bfs: switch to ->free_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
49f82a808b
commit
8d8fc9cbc7
@ -245,17 +245,11 @@ static struct inode *bfs_alloc_inode(struct super_block *sb)
|
|||||||
return &bi->vfs_inode;
|
return &bi->vfs_inode;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bfs_i_callback(struct rcu_head *head)
|
static void bfs_free_inode(struct inode *inode)
|
||||||
{
|
{
|
||||||
struct inode *inode = container_of(head, struct inode, i_rcu);
|
|
||||||
kmem_cache_free(bfs_inode_cachep, BFS_I(inode));
|
kmem_cache_free(bfs_inode_cachep, BFS_I(inode));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bfs_destroy_inode(struct inode *inode)
|
|
||||||
{
|
|
||||||
call_rcu(&inode->i_rcu, bfs_i_callback);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void init_once(void *foo)
|
static void init_once(void *foo)
|
||||||
{
|
{
|
||||||
struct bfs_inode_info *bi = foo;
|
struct bfs_inode_info *bi = foo;
|
||||||
@ -287,7 +281,7 @@ static void destroy_inodecache(void)
|
|||||||
|
|
||||||
static const struct super_operations bfs_sops = {
|
static const struct super_operations bfs_sops = {
|
||||||
.alloc_inode = bfs_alloc_inode,
|
.alloc_inode = bfs_alloc_inode,
|
||||||
.destroy_inode = bfs_destroy_inode,
|
.free_inode = bfs_free_inode,
|
||||||
.write_inode = bfs_write_inode,
|
.write_inode = bfs_write_inode,
|
||||||
.evict_inode = bfs_evict_inode,
|
.evict_inode = bfs_evict_inode,
|
||||||
.put_super = bfs_put_super,
|
.put_super = bfs_put_super,
|
||||||
|
Loading…
Reference in New Issue
Block a user