linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ftrace: fix traceoff_on_warning handling on boot command line
@ 2014-11-12 23:14 Luis Claudio R. Goncalves
  2014-11-12 23:42 ` Steven Rostedt
  0 siblings, 1 reply; 2+ messages in thread
From: Luis Claudio R. Goncalves @ 2014-11-12 23:14 UTC (permalink / raw)
  To: Steven Rostedt; +Cc: linux-kernel, Clark Williams

Steven,

While backporting traceoff_on_warning to 3.10.33-rt we noticed a slightly
difference between what was stated on Documentation/kernel-parameters.txt
and the actual code.

Please consider the following patch for inclusion.

Best regards,
Luis

------

ftrace: fix traceoff_on_warning handling on boot command line

According to the documentation, adding "traceoff_on_warning" to the boot
command line should be enough to enable the feature. But right now it is
necessary to specify "traceoff_on_warning=". Along with fixing that, also
verify if the value passed, if any, is either "0" or "off".

Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>

diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index f68981f..a956a60 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -155,10 +155,11 @@ __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
 
 static int __init stop_trace_on_warning(char *str)
 {
-	__disable_trace_on_warning = 1;
+	if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0))
+		__disable_trace_on_warning = 1;
 	return 1;
 }
-__setup("traceoff_on_warning=", stop_trace_on_warning);
+__setup("traceoff_on_warning", stop_trace_on_warning);
 
 static int __init boot_alloc_snapshot(char *str)
 {



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ftrace: fix traceoff_on_warning handling on boot command line
  2014-11-12 23:14 [PATCH] ftrace: fix traceoff_on_warning handling on boot command line Luis Claudio R. Goncalves
@ 2014-11-12 23:42 ` Steven Rostedt
  0 siblings, 0 replies; 2+ messages in thread
From: Steven Rostedt @ 2014-11-12 23:42 UTC (permalink / raw)
  To: Luis Claudio R. Goncalves; +Cc: linux-kernel, Clark Williams

On Wed, 12 Nov 2014 21:14:00 -0200
"Luis Claudio R. Goncalves" <lclaudio@uudg.org> wrote:

> Steven,
> 
> While backporting traceoff_on_warning to 3.10.33-rt we noticed a slightly
> difference between what was stated on Documentation/kernel-parameters.txt
> and the actual code.
> 
> Please consider the following patch for inclusion.
> 
> Best regards,
> Luis
> 

Thanks Luis, I'll add it to my queue.

-- Steve

> ------
> 
> ftrace: fix traceoff_on_warning handling on boot command line
> 
> According to the documentation, adding "traceoff_on_warning" to the boot
> command line should be enough to enable the feature. But right now it is
> necessary to specify "traceoff_on_warning=". Along with fixing that, also
> verify if the value passed, if any, is either "0" or "off".
> 
> Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
> 
> diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
> index f68981f..a956a60 100644
> --- a/kernel/trace/trace.c
> +++ b/kernel/trace/trace.c
> @@ -155,10 +155,11 @@ __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
>  
>  static int __init stop_trace_on_warning(char *str)
>  {
> -	__disable_trace_on_warning = 1;
> +	if ((strcmp(str, "=0") != 0 && strcmp(str, "=off") != 0))
> +		__disable_trace_on_warning = 1;
>  	return 1;
>  }
> -__setup("traceoff_on_warning=", stop_trace_on_warning);
> +__setup("traceoff_on_warning", stop_trace_on_warning);
>  
>  static int __init boot_alloc_snapshot(char *str)
>  {
> 


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-11-12 23:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-12 23:14 [PATCH] ftrace: fix traceoff_on_warning handling on boot command line Luis Claudio R. Goncalves
2014-11-12 23:42 ` Steven Rostedt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).