summaryrefslogtreecommitdiffstats
path: root/fs/f2fs/debug.c
diff options
context:
space:
mode:
authorYounger Liu2013-12-03 14:09:29 +0100
committerJaegeuk Kim2013-12-23 02:18:05 +0100
commit40e1ebe97d58b141332e895facf9e69b8b430ae1 (patch)
tree0510def22b48f9439c019b6a3b2e655a2bfcfbc8 /fs/f2fs/debug.c
parentf2fs: remove debufs dir if debugfs_create_file() failed (diff)
downloadkernel-qcow2-linux-40e1ebe97d58b141332e895facf9e69b8b430ae1.tar.gz
kernel-qcow2-linux-40e1ebe97d58b141332e895facf9e69b8b430ae1.tar.xz
kernel-qcow2-linux-40e1ebe97d58b141332e895facf9e69b8b430ae1.zip
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: Younger 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: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/debug.c')
-rw-r--r--fs/f2fs/debug.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/fs/f2fs/debug.c b/fs/f2fs/debug.c
index b51fb3c2a8e0..61adbcbe9b87 100644
--- a/fs/f2fs/debug.c
+++ b/fs/f2fs/debug.c
@@ -24,7 +24,7 @@
#include "gc.h"
static LIST_HEAD(f2fs_stat_list);
-static struct dentry *debugfs_root;
+static struct dentry *f2fs_debugfs_root;
static DEFINE_MUTEX(f2fs_stat_mutex);
static void update_general_status(struct f2fs_sb_info *sbi)
@@ -342,11 +342,11 @@ void __init f2fs_create_root_stats(void)
{
struct dentry *file;
- debugfs_root = debugfs_create_dir("f2fs", NULL);
- if (!debugfs_root)
+ f2fs_debugfs_root = debugfs_create_dir("f2fs", NULL);
+ if (!f2fs_debugfs_root)
goto bail;
- file = debugfs_create_file("status", S_IRUGO, debugfs_root,
+ file = debugfs_create_file("status", S_IRUGO, f2fs_debugfs_root,
NULL, &stat_fops);
if (!file)
goto free_debugfs_dir;
@@ -354,18 +354,18 @@ void __init f2fs_create_root_stats(void)
return;
free_debugfs_dir:
- debugfs_remove(debugfs_root);
+ debugfs_remove(f2fs_debugfs_root);
bail:
- debugfs_root = NULL;
+ f2fs_debugfs_root = NULL;
return;
}
void f2fs_destroy_root_stats(void)
{
- if (!debugfs_root)
+ if (!f2fs_debugfs_root)
return;
- debugfs_remove_recursive(debugfs_root);
- debugfs_root = NULL;
+ debugfs_remove_recursive(f2fs_debugfs_root);
+ f2fs_debugfs_root = NULL;
}