aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2011-02-24 14:52:13 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2011-02-24 14:52:13 +0000
commita6772a10876d4223b9657f3db3df3a35bd36521e (patch)
tree9e3317b96fff194ac1b42720d8ba0a3241018370 /target/linux
parent770d2d1493fb5c055cdced185b3fb38140446209 (diff)
downloadupstream-a6772a10876d4223b9657f3db3df3a35bd36521e.tar.gz
upstream-a6772a10876d4223b9657f3db3df3a35bd36521e.tar.bz2
upstream-a6772a10876d4223b9657f3db3df3a35bd36521e.zip
linux/generic: fix r25699 (thanks nbd)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25700 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/generic/patches-2.6.38/218-mini_fo_fix_2_6_38.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic/patches-2.6.38/218-mini_fo_fix_2_6_38.patch b/target/linux/generic/patches-2.6.38/218-mini_fo_fix_2_6_38.patch
index e61f5644f9..f1416eb47e 100644
--- a/target/linux/generic/patches-2.6.38/218-mini_fo_fix_2_6_38.patch
+++ b/target/linux/generic/patches-2.6.38/218-mini_fo_fix_2_6_38.patch
@@ -14,7 +14,7 @@
hidden_dentry->d_op &&
hidden_dentry->d_op->d_hash) {
- err = hidden_dentry->d_op->d_hash(hidden_dentry, name);
-+ err = hidden_dentry->d_op->d_hash(hidden_dentry, hidden_sto_dentry->d_inode, name);
++ err = hidden_dentry->d_op->d_hash(hidden_dentry, hidden_dentry->d_inode, name);
}
goto out;
}
@@ -31,7 +31,7 @@
hidden_dentry->d_op &&
hidden_dentry->d_op->d_hash) {
- err = hidden_dentry->d_op->d_hash(hidden_dentry, name);
-+ err = hidden_dentry->d_op->d_hash(hidden_dentry, hidden_sto_dentry->d_inode, name);
++ err = hidden_dentry->d_op->d_hash(hidden_dentry, hidden_dentry->d_inode, name);
goto out;
}
}