Skip to content

Commit

Permalink
squashfs: switch to ->free_inode()
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed May 2, 2019
1 parent bcb8d71 commit 56b5af1
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions fs/squashfs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -473,18 +473,11 @@ static struct inode *squashfs_alloc_inode(struct super_block *sb)
}


static void squashfs_i_callback(struct rcu_head *head)
static void squashfs_free_inode(struct inode *inode)
{
struct inode *inode = container_of(head, struct inode, i_rcu);
kmem_cache_free(squashfs_inode_cachep, squashfs_i(inode));
}

static void squashfs_destroy_inode(struct inode *inode)
{
call_rcu(&inode->i_rcu, squashfs_i_callback);
}


static struct file_system_type squashfs_fs_type = {
.owner = THIS_MODULE,
.name = "squashfs",
Expand All @@ -496,7 +489,7 @@ MODULE_ALIAS_FS("squashfs");

static const struct super_operations squashfs_super_ops = {
.alloc_inode = squashfs_alloc_inode,
.destroy_inode = squashfs_destroy_inode,
.free_inode = squashfs_free_inode,
.statfs = squashfs_statfs,
.put_super = squashfs_put_super,
.remount_fs = squashfs_remount
Expand Down

0 comments on commit 56b5af1

Please sign in to comment.