Commit 25af6c4a authored by Al Viro's avatar Al Viro

erofs: switch to ->free_inode()

Acked-by: default avatarGao Xiang <gaoxiang25@huawei.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 6d0e0d0b
...@@ -57,9 +57,8 @@ static struct inode *alloc_inode(struct super_block *sb) ...@@ -57,9 +57,8 @@ static struct inode *alloc_inode(struct super_block *sb)
return &vi->vfs_inode; return &vi->vfs_inode;
} }
static void i_callback(struct rcu_head *head) static void free_inode(struct inode *inode)
{ {
struct inode *inode = container_of(head, struct inode, i_rcu);
struct erofs_vnode *vi = EROFS_V(inode); struct erofs_vnode *vi = EROFS_V(inode);
/* be careful RCU symlink path (see ext4_inode_info->i_data)! */ /* be careful RCU symlink path (see ext4_inode_info->i_data)! */
...@@ -71,11 +70,6 @@ static void i_callback(struct rcu_head *head) ...@@ -71,11 +70,6 @@ static void i_callback(struct rcu_head *head)
kmem_cache_free(erofs_inode_cachep, vi); kmem_cache_free(erofs_inode_cachep, vi);
} }
static void destroy_inode(struct inode *inode)
{
call_rcu(&inode->i_rcu, i_callback);
}
static int superblock_read(struct super_block *sb) static int superblock_read(struct super_block *sb)
{ {
struct erofs_sb_info *sbi; struct erofs_sb_info *sbi;
...@@ -668,7 +662,7 @@ static int erofs_remount(struct super_block *sb, int *flags, char *data) ...@@ -668,7 +662,7 @@ static int erofs_remount(struct super_block *sb, int *flags, char *data)
const struct super_operations erofs_sops = { const struct super_operations erofs_sops = {
.put_super = erofs_put_super, .put_super = erofs_put_super,
.alloc_inode = alloc_inode, .alloc_inode = alloc_inode,
.destroy_inode = destroy_inode, .free_inode = free_inode,
.statfs = erofs_statfs, .statfs = erofs_statfs,
.show_options = erofs_show_options, .show_options = erofs_show_options,
.remount_fs = erofs_remount, .remount_fs = erofs_remount,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment