提交 ccc532dc 编写于 作者: T Tejun Heo 提交者: Greg Kroah-Hartman

sysfs, kernfs: drop unused params from sysfs_fill_super()

sysfs_fill_super() takes three params - @sb, @data and @silent - but
uses only @sb.  Drop the latter two.
Signed-off-by: NTejun Heo <tj@kernel.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 2072f1af
......@@ -41,7 +41,7 @@ struct sysfs_dirent sysfs_root = {
.s_ino = 1,
};
static int sysfs_fill_super(struct super_block *sb, void *data, int silent)
static int sysfs_fill_super(struct super_block *sb)
{
struct inode *inode;
struct dentry *root;
......@@ -123,7 +123,7 @@ static struct dentry *sysfs_mount(struct file_system_type *fs_type,
if (IS_ERR(sb))
return ERR_CAST(sb);
if (!sb->s_root) {
error = sysfs_fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
error = sysfs_fill_super(sb);
if (error) {
deactivate_locked_super(sb);
return ERR_PTR(error);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册