ocfs2: move dquot_initialize() in ocfs2_delete_inode() somewhat later
authorJan Kara <jack@suse.cz>
Thu, 3 Apr 2014 21:46:54 +0000 (14:46 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 3 Apr 2014 23:20:54 +0000 (16:20 -0700)
Move dquot_initalize() call in ocfs2_delete_inode() after the moment we
verify inode is actually a sane one to delete.  We certainly don't want
to initialize quota for system inodes etc.  This also avoids calling
into quota code from downconvert thread.

Add more details into the comment why bailing out from
ocfs2_delete_inode() when we are in downconvert thread is OK.

Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Mark Fasheh <mfasheh@suse.de>
Reviewed-by: Srinivas Eeda <srinivas.eeda@oracle.com>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/ocfs2/inode.c

index 2f7d75d59f049091b3f80e05b559aa5b20d4e6db..809b5d57a6b89e0f8ae2959f424667d6d97bda4e 100644 (file)
@@ -831,11 +831,13 @@ static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
                goto bail;
        }
 
-       /* If we're coming from downconvert_thread we can't go into our own
-        * voting [hello, deadlock city!], so unforuntately we just
-        * have to skip deleting this guy. That's OK though because
-        * the node who's doing the actual deleting should handle it
-        * anyway. */
+       /*
+        * If we're coming from downconvert_thread we can't go into our own
+        * voting [hello, deadlock city!] so we cannot delete the inode. But
+        * since we dropped last inode ref when downconverting dentry lock,
+        * we cannot have the file open and thus the node doing unlink will
+        * take care of deleting the inode.
+        */
        if (current == osb->dc_task)
                goto bail;
 
@@ -981,8 +983,6 @@ static void ocfs2_delete_inode(struct inode *inode)
        if (is_bad_inode(inode) || !OCFS2_I(inode)->ip_blkno)
                goto bail;
 
-       dquot_initialize(inode);
-
        if (!ocfs2_inode_is_valid_to_delete(inode)) {
                /* It's probably not necessary to truncate_inode_pages
                 * here but we do it for safety anyway (it will most
@@ -991,6 +991,8 @@ static void ocfs2_delete_inode(struct inode *inode)
                goto bail;
        }
 
+       dquot_initialize(inode);
+
        /* We want to block signals in delete_inode as the lock and
         * messaging paths may return us -ERESTARTSYS. Which would
         * cause us to exit early, resulting in inodes being orphaned