summaryrefslogtreecommitdiffstats
path: root/target
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
commit4ef9410fb3788a23ab1347d9e0c1640852e52ac0 (patch)
treed41fee5145c17bfcbc4b2077567a5fb5e559bfc1 /target
parent0e60b43258188e6e0f379d50c0cd684e4f826ffa (diff)
downloadmaster-31e0f0ae-4ef9410fb3788a23ab1347d9e0c1640852e52ac0.tar.gz
master-31e0f0ae-4ef9410fb3788a23ab1347d9e0c1640852e52ac0.tar.bz2
master-31e0f0ae-4ef9410fb3788a23ab1347d9e0c1640852e52ac0.zip
linux/generic: fix r25699 (thanks nbd)
SVN-Revision: 25700
Diffstat (limited to 'target')
-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;
}
}