diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-15 19:48:07 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-05-01 22:43:24 -0400 |
commit | 6d845e2286a82fba5990decf13a7824e9ecbf1a7 (patch) | |
tree | 7c47ab16513eca7270cc33cfc9c3a445877e3e43 /fs/hfs | |
parent | 784494e1d759622fef9fb633f0100935c692adb3 (diff) | |
download | linux-6d845e2286a82fba5990decf13a7824e9ecbf1a7.tar.gz linux-6d845e2286a82fba5990decf13a7824e9ecbf1a7.tar.bz2 linux-6d845e2286a82fba5990decf13a7824e9ecbf1a7.zip |
hfs: switch to ->free_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hfs')
-rw-r--r-- | fs/hfs/super.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/fs/hfs/super.c b/fs/hfs/super.c index 173876782f73..c33324686d89 100644 --- a/fs/hfs/super.c +++ b/fs/hfs/super.c @@ -167,20 +167,14 @@ static struct inode *hfs_alloc_inode(struct super_block *sb) return i ? &i->vfs_inode : NULL; } -static void hfs_i_callback(struct rcu_head *head) +static void hfs_free_inode(struct inode *inode) { - struct inode *inode = container_of(head, struct inode, i_rcu); kmem_cache_free(hfs_inode_cachep, HFS_I(inode)); } -static void hfs_destroy_inode(struct inode *inode) -{ - call_rcu(&inode->i_rcu, hfs_i_callback); -} - static const struct super_operations hfs_super_operations = { .alloc_inode = hfs_alloc_inode, - .destroy_inode = hfs_destroy_inode, + .free_inode = hfs_free_inode, .write_inode = hfs_write_inode, .evict_inode = hfs_evict_inode, .put_super = hfs_put_super, |