aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch
diff options
context:
space:
mode:
authorAlexandros C. Couloumbis <alex@ozo.com>2010-08-29 18:33:06 +0000
committerAlexandros C. Couloumbis <alex@ozo.com>2010-08-29 18:33:06 +0000
commit67fd8d1fdce6e7ea4b95fcec83178069a9a65a42 (patch)
tree6a3c680995d9d3a321749e3085b117ea9fc26eff /target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch
parentcf445bb48fbbddab07947e35e979bb9592e24b5a (diff)
downloadupstream-67fd8d1fdce6e7ea4b95fcec83178069a9a65a42.tar.gz
upstream-67fd8d1fdce6e7ea4b95fcec83178069a9a65a42.tar.bz2
upstream-67fd8d1fdce6e7ea4b95fcec83178069a9a65a42.zip
linux/generic: update 2.6.36 kernel patches
SVN-Revision: 22834
Diffstat (limited to 'target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch')
-rw-r--r--target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch b/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch
new file mode 100644
index 0000000000..cae9547b00
--- /dev/null
+++ b/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch
@@ -0,0 +1,22 @@
+--- a/fs/mini_fo/super.c
++++ b/fs/mini_fo/super.c
+@@ -296,11 +296,19 @@ struct super_operations mini_fo_sops =
+ put_inode: mini_fo_put_inode,
+ #endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,6,26) */
+ #if defined(FIST_DEBUG) || defined(FIST_FILTER_SCA)
++#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,35)
++ evict_inode: mini_fo_delete_inode,
++#else
+ delete_inode: mini_fo_delete_inode,
++#endif
+ #endif /* defined(FIST_DEBUG) || defined(FIST_FILTER_SCA) */
+ put_super: mini_fo_put_super,
+ statfs: mini_fo_statfs,
+ remount_fs: mini_fo_remount_fs,
++#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,35)
++ evict_inode: mini_fo_clear_inode,
++#else
+ clear_inode: mini_fo_clear_inode,
++#endif
+ umount_begin: mini_fo_umount_begin,
+ };