Hi Jurij,

I've also tried a similar patch before but it did not help...

Here's the patch which works for me:

Index: inode.c
===================================================================
--- inode.c     (revision 1525)
+++ inode.c     (working copy)
@@ -56,8 +56,9 @@
 static int  lu_statfs(struct super_block*, struct kstatfs*);

 static struct super_operations lu_sops = {
-    .drop_inode                = generic_delete_inode,
-    .delete_inode      = lu_delete_inode,
+    .drop_inode                = generic_drop_inode,
+    .delete_inode      = generic_delete_inode,
+/*    .delete_inode    = lu_delete_inode,*/
     .put_super         = lu_put_super,
     .statfs            = lu_statfs,
 };


I replaced lufs sops by the generic ones, and it seems to work well.

Best regards,

  Ludovic


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to