sysv: switch to ->free_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
a78bb3838d
commit
6becf8edf1
@ -313,17 +313,11 @@ static struct inode *sysv_alloc_inode(struct super_block *sb)
|
|||||||
return &si->vfs_inode;
|
return &si->vfs_inode;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sysv_i_callback(struct rcu_head *head)
|
static void sysv_free_in_core_inode(struct inode *inode)
|
||||||
{
|
{
|
||||||
struct inode *inode = container_of(head, struct inode, i_rcu);
|
|
||||||
kmem_cache_free(sysv_inode_cachep, SYSV_I(inode));
|
kmem_cache_free(sysv_inode_cachep, SYSV_I(inode));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sysv_destroy_inode(struct inode *inode)
|
|
||||||
{
|
|
||||||
call_rcu(&inode->i_rcu, sysv_i_callback);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void init_once(void *p)
|
static void init_once(void *p)
|
||||||
{
|
{
|
||||||
struct sysv_inode_info *si = (struct sysv_inode_info *)p;
|
struct sysv_inode_info *si = (struct sysv_inode_info *)p;
|
||||||
@ -333,7 +327,7 @@ static void init_once(void *p)
|
|||||||
|
|
||||||
const struct super_operations sysv_sops = {
|
const struct super_operations sysv_sops = {
|
||||||
.alloc_inode = sysv_alloc_inode,
|
.alloc_inode = sysv_alloc_inode,
|
||||||
.destroy_inode = sysv_destroy_inode,
|
.free_inode = sysv_free_in_core_inode,
|
||||||
.write_inode = sysv_write_inode,
|
.write_inode = sysv_write_inode,
|
||||||
.evict_inode = sysv_evict_inode,
|
.evict_inode = sysv_evict_inode,
|
||||||
.put_super = sysv_put_super,
|
.put_super = sysv_put_super,
|
||||||
|
Loading…
Reference in New Issue
Block a user