From: Alexandros C. Couloumbis Date: Thu, 24 Feb 2011 14:45:53 +0000 (+0000) Subject: linux/generic: fix mini_fo for kernels >= 2.6.38 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0e60b43258188e6e0f379d50c0cd684e4f826ffa;p=librecmc%2Flibrecmc.git linux/generic: fix mini_fo for kernels >= 2.6.38 SVN-Revision: 25699 --- 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 new file mode 100644 index 0000000000..e61f5644f9 --- /dev/null +++ b/target/linux/generic/patches-2.6.38/218-mini_fo_fix_2_6_38.patch @@ -0,0 +1,37 @@ +--- a/fs/mini_fo/dentry.c ++++ b/fs/mini_fo/dentry.c +@@ -96,7 +96,7 @@ mini_fo_d_hash(dentry_t *dentry, qstr_t + if(hidden_sto_dentry && + hidden_sto_dentry->d_op && + hidden_sto_dentry->d_op->d_hash) { +- err = hidden_sto_dentry->d_op->d_hash(hidden_sto_dentry, name); ++ err = hidden_sto_dentry->d_op->d_hash(hidden_sto_dentry, hidden_sto_dentry->d_inode, name); + } + goto out; + } +@@ -106,7 +106,7 @@ mini_fo_d_hash(dentry_t *dentry, qstr_t + if(hidden_dentry && + 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); + } + goto out; + } +@@ -116,14 +116,14 @@ mini_fo_d_hash(dentry_t *dentry, qstr_t + if(hidden_sto_dentry && + hidden_sto_dentry->d_op && + hidden_sto_dentry->d_op->d_hash) { +- err = hidden_sto_dentry->d_op->d_hash(hidden_sto_dentry, name); ++ err = hidden_sto_dentry->d_op->d_hash(hidden_sto_dentry, hidden_sto_dentry->d_inode, name); + goto out; + } + hidden_dentry = dtohd(dentry); + if(hidden_dentry && + 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); + goto out; + } + }