summaryrefslogtreecommitdiffstats
path: root/fs/debugfs
diff options
context:
space:
mode:
authorAl Viro2019-04-15 05:19:45 +0200
committerAl Viro2019-05-02 04:43:24 +0200
commit6234ddf429ef82e1b187b8206cbd9ead19671f77 (patch)
treeb26aa723239561a1bb94c8eb75492dbe8fd7bb7d /fs/debugfs
parentcifs: switch to ->free_inode() (diff)
downloadkernel-qcow2-linux-6234ddf429ef82e1b187b8206cbd9ead19671f77.tar.gz
kernel-qcow2-linux-6234ddf429ef82e1b187b8206cbd9ead19671f77.tar.xz
kernel-qcow2-linux-6234ddf429ef82e1b187b8206cbd9ead19671f77.zip
debugfs: switch to ->free_inode()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/debugfs')
-rw-r--r--fs/debugfs/inode.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index f25daa207421..414fa4752047 100644
--- a/fs/debugfs/inode.c
+++ b/fs/debugfs/inode.c
@@ -163,24 +163,18 @@ static int debugfs_show_options(struct seq_file *m, struct dentry *root)
return 0;
}
-static void debugfs_i_callback(struct rcu_head *head)
+static void debugfs_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 debugfs_destroy_inode(struct inode *inode)
-{
- call_rcu(&inode->i_rcu, debugfs_i_callback);
-}
-
static const struct super_operations debugfs_super_operations = {
.statfs = simple_statfs,
.remount_fs = debugfs_remount,
.show_options = debugfs_show_options,
- .destroy_inode = debugfs_destroy_inode,
+ .free_inode = debugfs_free_inode,
};
static void debugfs_release_dentry(struct dentry *dentry)