diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2019-04-10 15:02:41 -0400 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-05-01 22:43:23 -0400 | 
| commit | 312a679183b0502e4852eed12d1b6ae66a1636ff (patch) | |
| tree | d7830af8912bd8b0d342f002c446004c938a7646 /fs/affs | |
| parent | 8f05a7953560681cde94b864d1b495cc1a0f1aad (diff) | |
| download | linux-312a679183b0502e4852eed12d1b6ae66a1636ff.tar.bz2 | |
affs: switch to ->free_inode()
Acked-by: David Sterba <dsterba@suse.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/affs')
| -rw-r--r-- | fs/affs/super.c | 10 | 
1 files changed, 2 insertions, 8 deletions
| diff --git a/fs/affs/super.c b/fs/affs/super.c index d1ad11a8a4a5..d58217f0baaa 100644 --- a/fs/affs/super.c +++ b/fs/affs/super.c @@ -111,17 +111,11 @@ static struct inode *affs_alloc_inode(struct super_block *sb)  	return &i->vfs_inode;  } -static void affs_i_callback(struct rcu_head *head) +static void affs_free_inode(struct inode *inode)  { -	struct inode *inode = container_of(head, struct inode, i_rcu);  	kmem_cache_free(affs_inode_cachep, AFFS_I(inode));  } -static void affs_destroy_inode(struct inode *inode) -{ -	call_rcu(&inode->i_rcu, affs_i_callback); -} -  static void init_once(void *foo)  {  	struct affs_inode_info *ei = (struct affs_inode_info *) foo; @@ -155,7 +149,7 @@ static void destroy_inodecache(void)  static const struct super_operations affs_sops = {  	.alloc_inode	= affs_alloc_inode, -	.destroy_inode	= affs_destroy_inode, +	.free_inode	= affs_free_inode,  	.write_inode	= affs_write_inode,  	.evict_inode	= affs_evict_inode,  	.put_super	= affs_put_super, |