You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch

23 lines
729 B
Diff

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