]> git.baikalelectronics.ru Git - kernel.git/commit
tracing: Fix tp_printk option related with tp_printk_stop_on_boot
authorJaeSang Yoo <js.yoo.5b@gmail.com>
Tue, 8 Feb 2022 19:54:22 +0000 (04:54 +0900)
committerSteven Rostedt (Google) <rostedt@goodmis.org>
Tue, 8 Feb 2022 20:47:00 +0000 (15:47 -0500)
commitd9182dff4629c5be154b9c511f5c7b4afc53a2ac
treeae5f1ea0f679577687fecbc16961d233681a1465
parent9b1901989fb4ae185e542346ee6f87284712f5ee
tracing: Fix tp_printk option related with tp_printk_stop_on_boot

The kernel parameter "tp_printk_stop_on_boot" starts with "tp_printk" which is
the same as another kernel parameter "tp_printk". If "tp_printk" setup is
called before the "tp_printk_stop_on_boot", it will override the latter
and keep it from being set.

This is similar to other kernel parameter issues, such as:
  Commit 44f86c6513b5 ("um: console: Ignore console= option")
or init/do_mounts.c:45 (setup function of "ro" kernel param)

Fix it by checking for a "_" right after the "tp_printk" and if that
exists do not process the parameter.

Link: https://lkml.kernel.org/r/20220208195421.969326-1-jsyoo5b@gmail.com
Signed-off-by: JaeSang Yoo <jsyoo5b@gmail.com>
[ Fixed up change log and added space after if condition ]
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
kernel/trace/trace.c