diff options
Diffstat (limited to 'fs/f2fs/debug.c')
-rw-r--r-- | fs/f2fs/debug.c | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/fs/f2fs/debug.c b/fs/f2fs/debug.c index b52c12cf5873..3f99266ccc17 100644 --- a/fs/f2fs/debug.c +++ b/fs/f2fs/debug.c | |||
@@ -345,21 +345,14 @@ void __init f2fs_create_root_stats(void) | |||
345 | 345 | ||
346 | f2fs_debugfs_root = debugfs_create_dir("f2fs", NULL); | 346 | f2fs_debugfs_root = debugfs_create_dir("f2fs", NULL); |
347 | if (!f2fs_debugfs_root) | 347 | if (!f2fs_debugfs_root) |
348 | goto bail; | 348 | return; |
349 | 349 | ||
350 | file = debugfs_create_file("status", S_IRUGO, f2fs_debugfs_root, | 350 | file = debugfs_create_file("status", S_IRUGO, f2fs_debugfs_root, |
351 | NULL, &stat_fops); | 351 | NULL, &stat_fops); |
352 | if (!file) | 352 | if (!file) { |
353 | goto free_debugfs_dir; | 353 | debugfs_remove(f2fs_debugfs_root); |
354 | 354 | f2fs_debugfs_root = NULL; | |
355 | return; | 355 | } |
356 | |||
357 | free_debugfs_dir: | ||
358 | debugfs_remove(f2fs_debugfs_root); | ||
359 | |||
360 | bail: | ||
361 | f2fs_debugfs_root = NULL; | ||
362 | return; | ||
363 | } | 356 | } |
364 | 357 | ||
365 | void f2fs_destroy_root_stats(void) | 358 | void f2fs_destroy_root_stats(void) |