efs: switch to ->free_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
6234ddf429
commit
f415c51123
@ -74,17 +74,11 @@ static struct inode *efs_alloc_inode(struct super_block *sb)
|
|||||||
return &ei->vfs_inode;
|
return &ei->vfs_inode;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void efs_i_callback(struct rcu_head *head)
|
static void efs_free_inode(struct inode *inode)
|
||||||
{
|
{
|
||||||
struct inode *inode = container_of(head, struct inode, i_rcu);
|
|
||||||
kmem_cache_free(efs_inode_cachep, INODE_INFO(inode));
|
kmem_cache_free(efs_inode_cachep, INODE_INFO(inode));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void efs_destroy_inode(struct inode *inode)
|
|
||||||
{
|
|
||||||
call_rcu(&inode->i_rcu, efs_i_callback);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void init_once(void *foo)
|
static void init_once(void *foo)
|
||||||
{
|
{
|
||||||
struct efs_inode_info *ei = (struct efs_inode_info *) foo;
|
struct efs_inode_info *ei = (struct efs_inode_info *) foo;
|
||||||
@ -122,7 +116,7 @@ static int efs_remount(struct super_block *sb, int *flags, char *data)
|
|||||||
|
|
||||||
static const struct super_operations efs_superblock_operations = {
|
static const struct super_operations efs_superblock_operations = {
|
||||||
.alloc_inode = efs_alloc_inode,
|
.alloc_inode = efs_alloc_inode,
|
||||||
.destroy_inode = efs_destroy_inode,
|
.free_inode = efs_free_inode,
|
||||||
.statfs = efs_statfs,
|
.statfs = efs_statfs,
|
||||||
.remount_fs = efs_remount,
|
.remount_fs = efs_remount,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user