Commit 4abaac9b authored by Dan Streetman's avatar Dan Streetman Committed by Linus Torvalds

update "mm/zsmalloc: don't fail if can't create debugfs info"

Some updates to commit d34f6157 ("mm/zsmalloc: don't fail if can't
create debugfs info"):

 - add pr_warn to all stat failure cases
 - do not prevent module loading on stat failure

Link: http://lkml.kernel.org/r/1463671123-5479-1-git-send-email-ddstreet@ieee.orgSigned-off-by: default avatarDan Streetman <ddstreet@ieee.org>
Reviewed-by: default avatarGanesh Mahendran <opensource.ganesh@gmail.com>
Acked-by: default avatarMinchan Kim <minchan@kernel.org>
Cc: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Cc: Dan Streetman <dan.streetman@canonical.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3017cd63
...@@ -45,6 +45,8 @@ ...@@ -45,6 +45,8 @@
* *
*/ */
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/sched.h> #include <linux/sched.h>
...@@ -483,16 +485,16 @@ static inline unsigned long zs_stat_get(struct size_class *class, ...@@ -483,16 +485,16 @@ static inline unsigned long zs_stat_get(struct size_class *class,
#ifdef CONFIG_ZSMALLOC_STAT #ifdef CONFIG_ZSMALLOC_STAT
static int __init zs_stat_init(void) static void __init zs_stat_init(void)
{ {
if (!debugfs_initialized()) if (!debugfs_initialized()) {
return -ENODEV; pr_warn("debugfs not available, stat dir not created\n");
return;
}
zs_stat_root = debugfs_create_dir("zsmalloc", NULL); zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
if (!zs_stat_root) if (!zs_stat_root)
return -ENOMEM; pr_warn("debugfs 'zsmalloc' stat dir creation failed\n");
return 0;
} }
static void __exit zs_stat_exit(void) static void __exit zs_stat_exit(void)
...@@ -577,8 +579,10 @@ static void zs_pool_stat_create(struct zs_pool *pool, const char *name) ...@@ -577,8 +579,10 @@ static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
{ {
struct dentry *entry; struct dentry *entry;
if (!zs_stat_root) if (!zs_stat_root) {
pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
return; return;
}
entry = debugfs_create_dir(name, zs_stat_root); entry = debugfs_create_dir(name, zs_stat_root);
if (!entry) { if (!entry) {
...@@ -592,7 +596,8 @@ static void zs_pool_stat_create(struct zs_pool *pool, const char *name) ...@@ -592,7 +596,8 @@ static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
if (!entry) { if (!entry) {
pr_warn("%s: debugfs file entry <%s> creation failed\n", pr_warn("%s: debugfs file entry <%s> creation failed\n",
name, "classes"); name, "classes");
return; debugfs_remove_recursive(pool->stat_dentry);
pool->stat_dentry = NULL;
} }
} }
...@@ -602,9 +607,8 @@ static void zs_pool_stat_destroy(struct zs_pool *pool) ...@@ -602,9 +607,8 @@ static void zs_pool_stat_destroy(struct zs_pool *pool)
} }
#else /* CONFIG_ZSMALLOC_STAT */ #else /* CONFIG_ZSMALLOC_STAT */
static int __init zs_stat_init(void) static void __init zs_stat_init(void)
{ {
return 0;
} }
static void __exit zs_stat_exit(void) static void __exit zs_stat_exit(void)
...@@ -2011,17 +2015,10 @@ static int __init zs_init(void) ...@@ -2011,17 +2015,10 @@ static int __init zs_init(void)
zpool_register_driver(&zs_zpool_driver); zpool_register_driver(&zs_zpool_driver);
#endif #endif
ret = zs_stat_init(); zs_stat_init();
if (ret) {
pr_err("zs stat initialization failed\n");
goto stat_fail;
}
return 0; return 0;
stat_fail:
#ifdef CONFIG_ZPOOL
zpool_unregister_driver(&zs_zpool_driver);
#endif
notifier_fail: notifier_fail:
zs_unregister_cpu_notifier(); zs_unregister_cpu_notifier();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment