jffs2: switch to ->free_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
07b0120710
commit
db0bd7b719
|
@ -44,20 +44,14 @@ static struct inode *jffs2_alloc_inode(struct super_block *sb)
|
|||
return &f->vfs_inode;
|
||||
}
|
||||
|
||||
static void jffs2_i_callback(struct rcu_head *head)
|
||||
static void jffs2_free_inode(struct inode *inode)
|
||||
{
|
||||
struct inode *inode = container_of(head, struct inode, i_rcu);
|
||||
struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
|
||||
|
||||
kfree(f->target);
|
||||
kmem_cache_free(jffs2_inode_cachep, f);
|
||||
}
|
||||
|
||||
static void jffs2_destroy_inode(struct inode *inode)
|
||||
{
|
||||
call_rcu(&inode->i_rcu, jffs2_i_callback);
|
||||
}
|
||||
|
||||
static void jffs2_i_init_once(void *foo)
|
||||
{
|
||||
struct jffs2_inode_info *f = foo;
|
||||
|
@ -258,7 +252,7 @@ static int jffs2_remount_fs(struct super_block *sb, int *flags, char *data)
|
|||
static const struct super_operations jffs2_super_operations =
|
||||
{
|
||||
.alloc_inode = jffs2_alloc_inode,
|
||||
.destroy_inode =jffs2_destroy_inode,
|
||||
.free_inode = jffs2_free_inode,
|
||||
.put_super = jffs2_put_super,
|
||||
.statfs = jffs2_statfs,
|
||||
.remount_fs = jffs2_remount_fs,
|
||||
|
|
Loading…
Reference in New Issue