aboutsummaryrefslogtreecommitdiffstats
path: root/fs/orangefs
diff options
context:
space:
mode:
authorPeter Zijlstra <peterz@infradead.org>2017-02-24 10:43:36 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-14 22:02:44 -0400
commitb2b0f6ffd3f97953044e909ca311d2a580ae8575 (patch)
tree6a6a118dd3fdc4643387265ad369e16779241c39 /fs/orangefs
parentd3381fab77cbca6f9664cf49b3f5dd3171f1f6d3 (diff)
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/orangefs')
-rw-r--r--fs/orangefs/super.c9
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)
115 return &orangefs_inode->vfs_inode; 115 return &orangefs_inode->vfs_inode;
116} 116}
117 117
118static void orangefs_i_callback(struct rcu_head *head)
119{
120 struct inode *inode = container_of(head, struct inode, i_rcu);
121 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
122 kmem_cache_free(orangefs_inode_cache, orangefs_inode);
123}
124
118static void orangefs_destroy_inode(struct inode *inode) 125static void orangefs_destroy_inode(struct inode *inode)
119{ 126{
120 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); 127 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
@@ -123,7 +130,7 @@ static void orangefs_destroy_inode(struct inode *inode)
123 "%s: deallocated %p destroying inode %pU\n", 130 "%s: deallocated %p destroying inode %pU\n",
124 __func__, orangefs_inode, get_khandle_from_ino(inode)); 131 __func__, orangefs_inode, get_khandle_from_ino(inode));
125 132
126 kmem_cache_free(orangefs_inode_cache, orangefs_inode); 133 call_rcu(&inode->i_rcu, orangefs_i_callback);
127} 134}
128 135
129/* 136/*