tools/bootconfig: Fix tracing_on option checking in ftrace2bconf.sh
authorMasami Hiramatsu <mhiramat@kernel.org>
Sat, 4 Sep 2021 15:54:31 +0000 (00:54 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 26 Sep 2021 12:08:59 +0000 (14:08 +0200)
[ Upstream commit 32ba9f0fb027cc43074e3ea26fcf831adeee8e03 ]

Since tracing_on indicates only "1" (default) or "0", ftrace2bconf.sh
only need to check the value is "0".

Link: https://lkml.kernel.org/r/163077087144.222577.6888011847727968737.stgit@devnote2
Fixes: 55ed4560774d ("tools/bootconfig: Add tracing_on support to helper scripts")
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/bootconfig/scripts/ftrace2bconf.sh

index a0c3bcc6da4f36c24bc29efa4ec8a718d213e3c1..fb201d5afe2c182a82c0aef537708c956337d08a 100755 (executable)
@@ -222,8 +222,8 @@ instance_options() { # [instance-name]
                emit_kv $PREFIX.cpumask = $val
        fi
        val=`cat $INSTANCE/tracing_on`
-       if [ `echo $val | sed -e s/f//g`x != x ]; then
-               emit_kv $PREFIX.tracing_on = $val
+       if [ "$val" = "0" ]; then
+               emit_kv $PREFIX.tracing_on = 0
        fi
 
        val=