]> Git Repo - linux.git/commitdiff
orangefs: Use RCU for destroy_inode
authorPeter Zijlstra <[email protected]>
Fri, 24 Feb 2017 15:43:36 +0000 (16:43 +0100)
committerAl Viro <[email protected]>
Thu, 2 Mar 2017 11:40:36 +0000 (06:40 -0500)
freeing of inodes must be RCU-delayed on all filesystems

Cc: [email protected]
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Signed-off-by: Al Viro <[email protected]>
fs/orangefs/super.c

index c48859f16e7b1fd9887bcd2edb73aaf4b4d55464..67c24351a67f8d38e7e4eb1b95d94b9b80cf12a2 100644 (file)
@@ -115,6 +115,13 @@ static struct inode *orangefs_alloc_inode(struct super_block *sb)
        return &orangefs_inode->vfs_inode;
 }
 
+static void orangefs_i_callback(struct rcu_head *head)
+{
+       struct inode *inode = container_of(head, struct inode, i_rcu);
+       struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
+       kmem_cache_free(orangefs_inode_cache, orangefs_inode);
+}
+
 static void orangefs_destroy_inode(struct inode *inode)
 {
        struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
@@ -123,7 +130,7 @@ static void orangefs_destroy_inode(struct inode *inode)
                        "%s: deallocated %p destroying inode %pU\n",
                        __func__, orangefs_inode, get_khandle_from_ino(inode));
 
-       kmem_cache_free(orangefs_inode_cache, orangefs_inode);
+       call_rcu(&inode->i_rcu, orangefs_i_callback);
 }
 
 /*
This page took 0.058931 seconds and 4 git commands to generate.