]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
lift the "already marked killed" case into shrink_dentry_list()
authorAl Viro <viro@zeniv.linux.org.uk>
Wed, 28 May 2014 13:48:44 +0000 (09:48 -0400)
committerJiri Slaby <jslaby@suse.cz>
Thu, 30 Oct 2014 21:17:40 +0000 (22:17 +0100)
commit 64fd72e0a44bdd62c5ca277cb24d0d02b2d8e9dc upstream.

It can happen only when dentry_kill() is called with unlock_on_failure
equal to 0 - other callers had dentry pinned until the moment they've
got ->d_lock and DCACHE_DENTRY_KILLED is set only after lockref_mark_dead().

IOW, only one of three call sites of dentry_kill() might end up reaching
that code.  Just move it there.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
fs/dcache.c

index 4b2cb57d6541c48b99f173ad4bf2fb6d49aeaf59..c7085b9712906bded0b96004a3c2aab37301ace8 100644 (file)
@@ -477,12 +477,6 @@ dentry_kill(struct dentry *dentry, int unlock_on_failure)
        struct dentry *parent = NULL;
        bool can_free = true;
 
-       if (unlikely(dentry->d_flags & DCACHE_DENTRY_KILLED)) {
-               can_free = dentry->d_flags & DCACHE_MAY_FREE;
-               spin_unlock(&dentry->d_lock);
-               goto out;
-       }
-
        inode = dentry->d_inode;
        if (inode && !spin_trylock(&inode->i_lock)) {
 relock:
@@ -837,6 +831,15 @@ static void shrink_dentry_list(struct list_head *list)
                        continue;
                }
 
+
+               if (unlikely(dentry->d_flags & DCACHE_DENTRY_KILLED)) {
+                       bool can_free = dentry->d_flags & DCACHE_MAY_FREE;
+                       spin_unlock(&dentry->d_lock);
+                       if (can_free)
+                               dentry_free(dentry);
+                       continue;
+               }
+
                parent = dentry_kill(dentry, 0);
                /*
                 * If dentry_kill returns NULL, we have nothing more to do.