diff options
author | Peter Zijlstra <peterz@infradead.org> | 2017-02-24 16:43:36 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-15 10:20:11 +0800 |
commit | a4755943204e4eab9fd456926f1607f5238727e4 (patch) | |
tree | 7b60d9950bd5ff746c80675b75c977dc7c89e65b /fs | |
parent | 2708a2d33e04af19f7d7ab4ce8982b89288ebd42 (diff) | |
download | linux-stable-a4755943204e4eab9fd456926f1607f5238727e4.tar.gz linux-stable-a4755943204e4eab9fd456926f1607f5238727e4.tar.bz2 linux-stable-a4755943204e4eab9fd456926f1607f5238727e4.zip |
orangefs: Use RCU for destroy_inode
commit 0695d7dc1d9f19b82ec2cae24856bddce278cfe6 upstream.
freeing of inodes must be RCU-delayed on all filesystems
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/orangefs/super.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/fs/orangefs/super.c b/fs/orangefs/super.c index c48859f16e7b..67c24351a67f 100644 --- a/fs/orangefs/super.c +++ b/fs/orangefs/super.c @@ -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); } /* |