diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2019-03-07 19:27:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-03-07 21:32:00 -0500 |
commit | 513770f54edba8b19c2175a151e02f1dfc911d87 (patch) | |
tree | 5eecc585065859b4a42006c16fe45068f6b872ac /lib/dynamic_debug.c | |
parent | f008043bd3b5ca7f2c65dbdad8ea6df0a6f134f3 (diff) |
dynamic_debug: move pr_err from module.c to ddebug_add_module
This serves two purposes: First, we get a diagnostic if (though
extremely unlikely), any of the calls of ddebug_add_module for built-in
code fails, effectively disabling dynamic_debug. Second, I want to make
struct _ddebug opaque, and avoid accessing any of its members outside
dynamic_debug.[ch].
Link: http://lkml.kernel.org/r/20190212214150.4807-9-linux@rasmusvillemoes.dk
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Acked-by: Jason Baron <jbaron@akamai.com>
Cc: David Sterba <dsterba@suse.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Petr Mladek <pmladek@suse.com>
Cc: "Rafael J . Wysocki" <rafael.j.wysocki@intel.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/dynamic_debug.c')
-rw-r--r-- | lib/dynamic_debug.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 7b76f43edaef..7bdf98c37e91 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c | |||
@@ -849,8 +849,10 @@ int ddebug_add_module(struct _ddebug *tab, unsigned int n, | |||
849 | struct ddebug_table *dt; | 849 | struct ddebug_table *dt; |
850 | 850 | ||
851 | dt = kzalloc(sizeof(*dt), GFP_KERNEL); | 851 | dt = kzalloc(sizeof(*dt), GFP_KERNEL); |
852 | if (dt == NULL) | 852 | if (dt == NULL) { |
853 | pr_err("error adding module: %s\n", name); | ||
853 | return -ENOMEM; | 854 | return -ENOMEM; |
855 | } | ||
854 | /* | 856 | /* |
855 | * For built-in modules, name lives in .rodata and is | 857 | * For built-in modules, name lives in .rodata and is |
856 | * immortal. For loaded modules, name points at the name[] | 858 | * immortal. For loaded modules, name points at the name[] |