diff options
Diffstat (limited to 'fs/isofs/inode.c')
-rw-r--r-- | fs/isofs/inode.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index d204ee4235fd..d8f3a652243d 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c | |||
@@ -81,11 +81,18 @@ static struct inode *isofs_alloc_inode(struct super_block *sb) | |||
81 | return &ei->vfs_inode; | 81 | return &ei->vfs_inode; |
82 | } | 82 | } |
83 | 83 | ||
84 | static void isofs_destroy_inode(struct inode *inode) | 84 | static void isofs_i_callback(struct rcu_head *head) |
85 | { | 85 | { |
86 | struct inode *inode = container_of(head, struct inode, i_rcu); | ||
87 | INIT_LIST_HEAD(&inode->i_dentry); | ||
86 | kmem_cache_free(isofs_inode_cachep, ISOFS_I(inode)); | 88 | kmem_cache_free(isofs_inode_cachep, ISOFS_I(inode)); |
87 | } | 89 | } |
88 | 90 | ||
91 | static void isofs_destroy_inode(struct inode *inode) | ||
92 | { | ||
93 | call_rcu(&inode->i_rcu, isofs_i_callback); | ||
94 | } | ||
95 | |||
89 | static void init_once(void *foo) | 96 | static void init_once(void *foo) |
90 | { | 97 | { |
91 | struct iso_inode_info *ei = foo; | 98 | struct iso_inode_info *ei = foo; |