aboutsummaryrefslogtreecommitdiffstats
path: root/fs/f2fs/sysfs.c
diff options
context:
space:
mode:
authorJaegeuk Kim <jaegeuk@kernel.org>2017-07-26 11:24:13 -0700
committerJaegeuk Kim <jaegeuk@kernel.org>2017-07-31 16:48:33 -0700
commitdc6b20551044a05cd4d8ad2356a6bd888570f52a (patch)
tree0897af23ff70218732164867dc0dbb061f26c41d /fs/f2fs/sysfs.c
parentf2fs: support project quota (diff)
downloadlinux-dev-dc6b20551044a05cd4d8ad2356a6bd888570f52a.tar.xz
linux-dev-dc6b20551044a05cd4d8ad2356a6bd888570f52a.zip
f2fs: avoid naming confusion of sysfs init
This patch changes the function names of sysfs init to follow ext4. f2fs_init_sysfs <-> f2fs_register_sysfs f2fs_exit_sysfs <-> f2fs_unregister_sysfs Suggested-by: Chao Yu <yuchao0@huawei.com> Reivewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/sysfs.c')
-rw-r--r--fs/f2fs/sysfs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/f2fs/sysfs.c b/fs/f2fs/sysfs.c
index 71191d89917d..5a78b9af92ef 100644
--- a/fs/f2fs/sysfs.c
+++ b/fs/f2fs/sysfs.c
@@ -304,7 +304,7 @@ static const struct file_operations f2fs_seq_##_name##_fops = { \
F2FS_PROC_FILE_DEF(segment_info);
F2FS_PROC_FILE_DEF(segment_bits);
-int __init f2fs_register_sysfs(void)
+int __init f2fs_init_sysfs(void)
{
f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
@@ -314,13 +314,13 @@ int __init f2fs_register_sysfs(void)
return 0;
}
-void f2fs_unregister_sysfs(void)
+void f2fs_exit_sysfs(void)
{
kset_unregister(f2fs_kset);
remove_proc_entry("fs/f2fs", NULL);
}
-int f2fs_init_sysfs(struct f2fs_sb_info *sbi)
+int f2fs_register_sysfs(struct f2fs_sb_info *sbi)
{
struct super_block *sb = sbi->sb;
int err;
@@ -351,7 +351,7 @@ err_out:
return err;
}
-void f2fs_exit_sysfs(struct f2fs_sb_info *sbi)
+void f2fs_unregister_sysfs(struct f2fs_sb_info *sbi)
{
kobject_del(&sbi->s_kobj);
kobject_put(&sbi->s_kobj);