mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-04 15:17:40 +07:00
f2fs: remove debufs dir if debugfs_create_file() failed
When debugfs_create_file() failed in f2fs_create_root_stats(), debugfs_root should be remove. Signed-off-by: Younger Liu <liuyiyang@hisense.com> Cc: Younger Liu <younger.liucn@gmail.com> Cc: Jaegeuk Kim <jaegeuk.kim@samsung.com> Reviewed-by: Chao Yu <chao2.yu@samsung.com> Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
9af0ff1c52
commit
c524723ebf
@ -340,14 +340,32 @@ void f2fs_destroy_stats(struct f2fs_sb_info *sbi)
|
|||||||
|
|
||||||
void __init f2fs_create_root_stats(void)
|
void __init f2fs_create_root_stats(void)
|
||||||
{
|
{
|
||||||
|
struct dentry *file;
|
||||||
|
|
||||||
debugfs_root = debugfs_create_dir("f2fs", NULL);
|
debugfs_root = debugfs_create_dir("f2fs", NULL);
|
||||||
if (debugfs_root)
|
if (!debugfs_root)
|
||||||
debugfs_create_file("status", S_IRUGO, debugfs_root,
|
goto bail;
|
||||||
NULL, &stat_fops);
|
|
||||||
|
file = debugfs_create_file("status", S_IRUGO, debugfs_root,
|
||||||
|
NULL, &stat_fops);
|
||||||
|
if (!file)
|
||||||
|
goto free_debugfs_dir;
|
||||||
|
|
||||||
|
return;
|
||||||
|
|
||||||
|
free_debugfs_dir:
|
||||||
|
debugfs_remove(debugfs_root);
|
||||||
|
|
||||||
|
bail:
|
||||||
|
debugfs_root = NULL;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
void f2fs_destroy_root_stats(void)
|
void f2fs_destroy_root_stats(void)
|
||||||
{
|
{
|
||||||
|
if (!debugfs_root)
|
||||||
|
return;
|
||||||
|
|
||||||
debugfs_remove_recursive(debugfs_root);
|
debugfs_remove_recursive(debugfs_root);
|
||||||
debugfs_root = NULL;
|
debugfs_root = NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user