linux/generic: update mini_fo evict_inode migration
authoracoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 13 Sep 2010 07:22:39 +0000 (07:22 +0000)
committeracoul <acoul@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 13 Sep 2010 07:22:39 +0000 (07:22 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23046 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/generic/patches-2.6.36/217-mini_fo_2.6.36_fixes.patch

index cae9547..f8d2ff6 100644 (file)
@@ -1,22 +1,30 @@
 --- a/fs/mini_fo/super.c
 +++ b/fs/mini_fo/super.c
-@@ -296,11 +296,19 @@ struct super_operations mini_fo_sops =
+@@ -117,8 +117,11 @@ mini_fo_delete_inode(inode_t *inode)
+       print_entry_location();
+       fist_checkinode(inode, "mini_fo_delete_inode IN");
+-      inode->i_size = 0;              /* every f/s seems to do that */
+-      clear_inode(inode);
++      // inode->i_size = 0;           /* every f/s seems to do that */
++      end_writeback(inode);
++      dquot_drop(inode);
++      inode->i_blocks = 0;
++
+       print_exit_location();
+ }
+@@ -296,11 +299,11 @@ 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)
+-      delete_inode:   mini_fo_delete_inode,
 +      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)
+-      clear_inode:    mini_fo_clear_inode,
 +      evict_inode:    mini_fo_clear_inode,
-+#else
-       clear_inode:    mini_fo_clear_inode,
-+#endif
        umount_begin:   mini_fo_umount_begin,
  };
This page took 0.026821 seconds and 4 git commands to generate.