diff options
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 3936aa7f2c22..223717dcc401 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
@@ -334,10 +334,17 @@ cifs_alloc_inode(struct super_block *sb) | |||
334 | return &cifs_inode->vfs_inode; | 334 | return &cifs_inode->vfs_inode; |
335 | } | 335 | } |
336 | 336 | ||
337 | static void cifs_i_callback(struct rcu_head *head) | ||
338 | { | ||
339 | struct inode *inode = container_of(head, struct inode, i_rcu); | ||
340 | INIT_LIST_HEAD(&inode->i_dentry); | ||
341 | kmem_cache_free(cifs_inode_cachep, CIFS_I(inode)); | ||
342 | } | ||
343 | |||
337 | static void | 344 | static void |
338 | cifs_destroy_inode(struct inode *inode) | 345 | cifs_destroy_inode(struct inode *inode) |
339 | { | 346 | { |
340 | kmem_cache_free(cifs_inode_cachep, CIFS_I(inode)); | 347 | call_rcu(&inode->i_rcu, cifs_i_callback); |
341 | } | 348 | } |
342 | 349 | ||
343 | static void | 350 | static void |