diff options
author | Younger Liu <liuyiyang@hisense.com> | 2013-12-03 08:09:29 -0500 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2013-12-22 20:18:05 -0500 |
commit | 40e1ebe97d58b141332e895facf9e69b8b430ae1 (patch) | |
tree | 0510def22b48f9439c019b6a3b2e655a2bfcfbc8 | |
parent | c524723ebf5794083819c25320802452fe06da18 (diff) |
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>
-rw-r--r-- | fs/f2fs/debug.c | 18 |
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 @@ | |||
24 | #include "gc.h" | 24 | #include "gc.h" |
25 | 25 | ||
26 | static LIST_HEAD(f2fs_stat_list); | 26 | static LIST_HEAD(f2fs_stat_list); |
27 | static struct dentry *debugfs_root; | 27 | static struct dentry *f2fs_debugfs_root; |
28 | static DEFINE_MUTEX(f2fs_stat_mutex); | 28 | static DEFINE_MUTEX(f2fs_stat_mutex); |
29 | 29 | ||
30 | static void update_general_status(struct f2fs_sb_info *sbi) | 30 | static void update_general_status(struct f2fs_sb_info *sbi) |
@@ -342,11 +342,11 @@ void __init f2fs_create_root_stats(void) | |||
342 | { | 342 | { |
343 | struct dentry *file; | 343 | struct dentry *file; |
344 | 344 | ||
345 | debugfs_root = debugfs_create_dir("f2fs", NULL); | 345 | f2fs_debugfs_root = debugfs_create_dir("f2fs", NULL); |
346 | if (!debugfs_root) | 346 | if (!f2fs_debugfs_root) |
347 | goto bail; | 347 | goto bail; |
348 | 348 | ||
349 | file = debugfs_create_file("status", S_IRUGO, debugfs_root, | 349 | file = debugfs_create_file("status", S_IRUGO, f2fs_debugfs_root, |
350 | NULL, &stat_fops); | 350 | NULL, &stat_fops); |
351 | if (!file) | 351 | if (!file) |
352 | goto free_debugfs_dir; | 352 | goto free_debugfs_dir; |
@@ -354,18 +354,18 @@ void __init f2fs_create_root_stats(void) | |||
354 | return; | 354 | return; |
355 | 355 | ||
356 | free_debugfs_dir: | 356 | free_debugfs_dir: |
357 | debugfs_remove(debugfs_root); | 357 | debugfs_remove(f2fs_debugfs_root); |
358 | 358 | ||
359 | bail: | 359 | bail: |
360 | debugfs_root = NULL; | 360 | f2fs_debugfs_root = NULL; |
361 | return; | 361 | return; |
362 | } | 362 | } |
363 | 363 | ||
364 | void f2fs_destroy_root_stats(void) | 364 | void f2fs_destroy_root_stats(void) |
365 | { | 365 | { |
366 | if (!debugfs_root) | 366 | if (!f2fs_debugfs_root) |
367 | return; | 367 | return; |
368 | 368 | ||
369 | debugfs_remove_recursive(debugfs_root); | 369 | debugfs_remove_recursive(f2fs_debugfs_root); |
370 | debugfs_root = NULL; | 370 | f2fs_debugfs_root = NULL; |
371 | } | 371 | } |