OSDN Git Service

new helper: dentry_free()
authorAl Viro <viro@zeniv.linux.org.uk>
Wed, 30 Apr 2014 03:40:14 +0000 (23:40 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 30 Apr 2014 22:02:52 +0000 (18:02 -0400)
The part of old d_free() that dealt with actual freeing of dentry.
Taken out of dentry_kill() into a separate function.

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

index a5540d4..dab7db1 100644 (file)
@@ -246,6 +246,15 @@ static void __d_free(struct rcu_head *head)
        kmem_cache_free(dentry_cache, dentry); 
 }
 
+static void dentry_free(struct dentry *dentry)
+{
+       /* if dentry was never visible to RCU, immediate free is OK */
+       if (!(dentry->d_flags & DCACHE_RCUACCESS))
+               __d_free(&dentry->d_u.d_rcu);
+       else
+               call_rcu(&dentry->d_u.d_rcu, __d_free);
+}
+
 /**
  * dentry_rcuwalk_barrier - invalidate in-progress rcu-walk lookups
  * @dentry: the target dentry
@@ -513,11 +522,7 @@ relock:
        if (dentry->d_op && dentry->d_op->d_release)
                dentry->d_op->d_release(dentry);
 
-       /* if dentry was never visible to RCU, immediate free is OK */
-       if (!(dentry->d_flags & DCACHE_RCUACCESS))
-               __d_free(&dentry->d_u.d_rcu);
-       else
-               call_rcu(&dentry->d_u.d_rcu, __d_free);
+       dentry_free(dentry);
        return parent;
 }