aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/module.c
diff options
context:
space:
mode:
authorRasmus Villemoes <linux@rasmusvillemoes.dk>2019-03-07 19:27:48 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2019-03-07 21:32:00 -0500
commit513770f54edba8b19c2175a151e02f1dfc911d87 (patch)
tree5eecc585065859b4a42006c16fe45068f6b872ac /kernel/module.c
parentf008043bd3b5ca7f2c65dbdad8ea6df0a6f134f3 (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 'kernel/module.c')
-rw-r--r--kernel/module.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/module.c b/kernel/module.c
index 2ad1b5239910..7b1d437c1ea6 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -2720,9 +2720,7 @@ static void dynamic_debug_setup(struct module *mod, struct _ddebug *debug, unsig
2720 if (!debug) 2720 if (!debug)
2721 return; 2721 return;
2722#ifdef CONFIG_DYNAMIC_DEBUG 2722#ifdef CONFIG_DYNAMIC_DEBUG
2723 if (ddebug_add_module(debug, num, mod->name)) 2723 ddebug_add_module(debug, num, mod->name);
2724 pr_err("dynamic debug error adding module: %s\n",
2725 debug->modname);
2726#endif 2724#endif
2727} 2725}
2728 2726