提交 40e1ebe9 编写于 作者: Y Younger Liu 提交者: Jaegeuk Kim

f2fs: replace the debugfs_root with f2fs_debugfs_root

This minor change for the naming conventions of debugfs_root
to avoid any possible conflicts to the other filesystem.
Signed-off-by: NYounger Liu <younger.liucn@gmail.com>
Cc: Younger Liu <younger.liucn@gmail.com>
Cc: Jaegeuk Kim <jaegeuk.kim@samsung.com>
[Jaegeuk Kim: change the patch name]
Signed-off-by: NJaegeuk Kim <jaegeuk.kim@samsung.com>
上级 c524723e
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
#include "gc.h" #include "gc.h"
static LIST_HEAD(f2fs_stat_list); static LIST_HEAD(f2fs_stat_list);
static struct dentry *debugfs_root; static struct dentry *f2fs_debugfs_root;
static DEFINE_MUTEX(f2fs_stat_mutex); static DEFINE_MUTEX(f2fs_stat_mutex);
static void update_general_status(struct f2fs_sb_info *sbi) static void update_general_status(struct f2fs_sb_info *sbi)
...@@ -342,11 +342,11 @@ void __init f2fs_create_root_stats(void) ...@@ -342,11 +342,11 @@ void __init f2fs_create_root_stats(void)
{ {
struct dentry *file; struct dentry *file;
debugfs_root = debugfs_create_dir("f2fs", NULL); f2fs_debugfs_root = debugfs_create_dir("f2fs", NULL);
if (!debugfs_root) if (!f2fs_debugfs_root)
goto bail; goto bail;
file = debugfs_create_file("status", S_IRUGO, debugfs_root, file = debugfs_create_file("status", S_IRUGO, f2fs_debugfs_root,
NULL, &stat_fops); NULL, &stat_fops);
if (!file) if (!file)
goto free_debugfs_dir; goto free_debugfs_dir;
...@@ -354,18 +354,18 @@ void __init f2fs_create_root_stats(void) ...@@ -354,18 +354,18 @@ void __init f2fs_create_root_stats(void)
return; return;
free_debugfs_dir: free_debugfs_dir:
debugfs_remove(debugfs_root); debugfs_remove(f2fs_debugfs_root);
bail: bail:
debugfs_root = NULL; f2fs_debugfs_root = NULL;
return; return;
} }
void f2fs_destroy_root_stats(void) void f2fs_destroy_root_stats(void)
{ {
if (!debugfs_root) if (!f2fs_debugfs_root)
return; return;
debugfs_remove_recursive(debugfs_root); debugfs_remove_recursive(f2fs_debugfs_root);
debugfs_root = NULL; f2fs_debugfs_root = NULL;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册