1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

linux/generic: update 2.6.36 kernel patches

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22834 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
acoul
2010-08-29 18:33:06 +00:00
parent 0c97393cfb
commit b27a17878e
2 changed files with 42 additions and 0 deletions

View File

@@ -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,
};