aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-2.6.32
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-01-05 03:07:56 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-01-05 03:07:56 +0000
commit3802480ff6e526cec65e31b2c82d135039e34766 (patch)
tree764b2e48a5b91fcb2dbea10f6aadf09e7b181ddc /target/linux/generic/patches-2.6.32
parent2568204ae18e22ebef7f5c2b7a25374d5e172507 (diff)
downloadmaster-187ad058-3802480ff6e526cec65e31b2c82d135039e34766.tar.gz
master-187ad058-3802480ff6e526cec65e31b2c82d135039e34766.tar.bz2
master-187ad058-3802480ff6e526cec65e31b2c82d135039e34766.zip
[generic] fix unbalanced mutex_lock/mutex_unlock in mini_fo getxattr op. Thanks Daniel Dickinson for tracking this down
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24906 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-2.6.32')
-rw-r--r--target/linux/generic/patches-2.6.32/209-mini_fo.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/patches-2.6.32/209-mini_fo.patch b/target/linux/generic/patches-2.6.32/209-mini_fo.patch
index 0b4091c64e..8f9140ac5b 100644
--- a/target/linux/generic/patches-2.6.32/209-mini_fo.patch
+++ b/target/linux/generic/patches-2.6.32/209-mini_fo.patch
@@ -3454,7 +3454,7 @@
+ err = hidden_dentry->d_inode->i_op->getxattr(hidden_dentry, encoded_name, encoded_value, size);
+ /* unlock_kernel() will be done by caller. */
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16)
-+ mutex_lock(&hidden_dentry->d_inode->i_mutex);
++ mutex_unlock(&hidden_dentry->d_inode->i_mutex);
+#else
+ up(&hidden_dentry->d_inode->i_sem);
+#endif