mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-16 04:04:06 +00:00
dyndbg: make dyndbg a known cli param
[ Upstream commit5ca1739748
] Right now dyndbg shows up as an unknown parameter if used on boot: Unknown command line parameters: dyndbg=+p That's because it is unknown, it doesn't sit in the __param section, so the processing done to warn users supplying an unknown parameter doesn't think it is legitimate. Install a dummy handler to register it. dynamic debug needs to search the whole command line for modules listed that are currently builtin, so there's no real work to be done in this callback. Fixes:86d1919a4f
("init: print out unknown kernel parameters") Tested-by: Jim Cromie <jim.cromie@gmail.com> Signed-off-by: Andrew Halaney <ahalaney@redhat.com> Signed-off-by: Jason Baron <jbaron@akamai.com> Link: https://lore.kernel.org/r/1634139622-20667-2-git-send-email-jbaron@akamai.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
ff6d93d17c
commit
ba150b11d0
1 changed files with 12 additions and 0 deletions
|
@ -761,6 +761,18 @@ static __init int ddebug_setup_query(char *str)
|
|||
|
||||
__setup("ddebug_query=", ddebug_setup_query);
|
||||
|
||||
/*
|
||||
* Install a noop handler to make dyndbg look like a normal kernel cli param.
|
||||
* This avoids warnings about dyndbg being an unknown cli param when supplied
|
||||
* by a user.
|
||||
*/
|
||||
static __init int dyndbg_setup(char *str)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
__setup("dyndbg=", dyndbg_setup);
|
||||
|
||||
/*
|
||||
* File_ops->write method for <debugfs>/dynamic_debug/control. Gathers the
|
||||
* command text from userspace, parses and executes it.
|
||||
|
|
Loading…
Add table
Reference in a new issue