apparmor: switch to ->free_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
bef252fa19
commit
27afa27d67
|
@ -123,22 +123,16 @@ static int aafs_show_path(struct seq_file *seq, struct dentry *dentry)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void aafs_i_callback(struct rcu_head *head)
|
||||
static void aafs_free_inode(struct inode *inode)
|
||||
{
|
||||
struct inode *inode = container_of(head, struct inode, i_rcu);
|
||||
if (S_ISLNK(inode->i_mode))
|
||||
kfree(inode->i_link);
|
||||
free_inode_nonrcu(inode);
|
||||
}
|
||||
|
||||
static void aafs_destroy_inode(struct inode *inode)
|
||||
{
|
||||
call_rcu(&inode->i_rcu, aafs_i_callback);
|
||||
}
|
||||
|
||||
static const struct super_operations aafs_super_ops = {
|
||||
.statfs = simple_statfs,
|
||||
.destroy_inode = aafs_destroy_inode,
|
||||
.free_inode = aafs_free_inode,
|
||||
.show_path = aafs_show_path,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue