hpfs: switch to ->free_inode()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2019-04-15 20:12:58 -04:00
parent 08ccfc5c36
commit 4d436d5cd5

View File

@ -238,17 +238,11 @@ static struct inode *hpfs_alloc_inode(struct super_block *sb)
return &ei->vfs_inode; return &ei->vfs_inode;
} }
static void hpfs_i_callback(struct rcu_head *head) static void hpfs_free_inode(struct inode *inode)
{ {
struct inode *inode = container_of(head, struct inode, i_rcu);
kmem_cache_free(hpfs_inode_cachep, hpfs_i(inode)); kmem_cache_free(hpfs_inode_cachep, hpfs_i(inode));
} }
static void hpfs_destroy_inode(struct inode *inode)
{
call_rcu(&inode->i_rcu, hpfs_i_callback);
}
static void init_once(void *foo) static void init_once(void *foo)
{ {
struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo; struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo;
@ -532,7 +526,7 @@ static int hpfs_show_options(struct seq_file *seq, struct dentry *root)
static const struct super_operations hpfs_sops = static const struct super_operations hpfs_sops =
{ {
.alloc_inode = hpfs_alloc_inode, .alloc_inode = hpfs_alloc_inode,
.destroy_inode = hpfs_destroy_inode, .free_inode = hpfs_free_inode,
.evict_inode = hpfs_evict_inode, .evict_inode = hpfs_evict_inode,
.put_super = hpfs_put_super, .put_super = hpfs_put_super,
.statfs = hpfs_statfs, .statfs = hpfs_statfs,