[PATCH v8 07/16] dyndbg-doc: fix bootparam usage example
Jim Cromie
jim.cromie at gmail.com
Wed Sep 15 16:39:48 UTC 2021
This example uses dyndbg as a core/kernel param; it is a (fake) module
param. Using it as given gets an "Unknown command line parameters:"
warning. Fix the broken example.
Signed-off-by: Jim Cromie <jim.cromie at gmail.com>
---
Documentation/admin-guide/dynamic-debug-howto.rst | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/Documentation/admin-guide/dynamic-debug-howto.rst b/Documentation/admin-guide/dynamic-debug-howto.rst
index ab28d200f016..b7329e72c630 100644
--- a/Documentation/admin-guide/dynamic-debug-howto.rst
+++ b/Documentation/admin-guide/dynamic-debug-howto.rst
@@ -359,7 +359,5 @@ Examples
Kernel command line: ...
// see whats going on in dyndbg=value processing
dynamic_debug.verbose=3
- // enable pr_debugs in 2 builtins, #cmt is stripped
- dyndbg="module params +p #cmt ; module sys +p"
- // enable pr_debugs in 2 functions in a module loaded later
- pc87360.dyndbg="func pc87360_init_device +p; func pc87360_find +p"
+ // enable pr_debugs in 2 builtins, 1 loadable modules init* funcs
+ params.dyndbg=+p sys.dyndbg=+p pc87360.dyndbg="func init* +p"
--
2.31.1
More information about the dri-devel
mailing list