public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Kconfig: Fix help message for DEFAULT_HUNG_TASK_TIMEOUT
@ 2011-08-31  9:43 Jiaju Zhang
  2011-09-08 21:08 ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Jiaju Zhang @ 2011-08-31  9:43 UTC (permalink / raw)
  To: linux-kbuild; +Cc: jkosina, mmarek, Jiaju Zhang

Added missing _secs in the help message of config DEFAULT_HUNG_TASK_TIMEOUT.

Signed-off-by: Jiaju Zhang <jjzhang@suse.de>
---
 lib/Kconfig.debug |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index c0cb9c4..f285553 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -248,8 +248,9 @@ config DEFAULT_HUNG_TASK_TIMEOUT
 	  to determine when a task has become non-responsive and should
 	  be considered hung.
 
-	  It can be adjusted at runtime via the kernel.hung_task_timeout
-	  sysctl or by writing a value to /proc/sys/kernel/hung_task_timeout.
+	  It can be adjusted at runtime via the kernel.hung_task_timeout_secs
+	  sysctl or by writing a value to
+	  /proc/sys/kernel/hung_task_timeout_secs.
 
 	  A timeout of 0 disables the check.  The default is two minutes.
 	  Keeping the default should be fine in most cases.
-- 
1.6.0.2


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

* Re: [PATCH] Kconfig: Fix help message for DEFAULT_HUNG_TASK_TIMEOUT
  2011-08-31  9:43 [PATCH] Kconfig: Fix help message for DEFAULT_HUNG_TASK_TIMEOUT Jiaju Zhang
@ 2011-09-08 21:08 ` Randy Dunlap
  2011-09-09  7:46   ` Jiaju Zhang
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2011-09-08 21:08 UTC (permalink / raw)
  To: Jiaju Zhang; +Cc: linux-kbuild, jkosina, mmarek

On 08/31/11 02:43, Jiaju Zhang wrote:
> Added missing _secs in the help message of config DEFAULT_HUNG_TASK_TIMEOUT.
> 
> Signed-off-by: Jiaju Zhang <jjzhang@suse.de>
> ---
>  lib/Kconfig.debug |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
> index c0cb9c4..f285553 100644
> --- a/lib/Kconfig.debug
> +++ b/lib/Kconfig.debug
> @@ -248,8 +248,9 @@ config DEFAULT_HUNG_TASK_TIMEOUT
>  	  to determine when a task has become non-responsive and should
>  	  be considered hung.
>  
> -	  It can be adjusted at runtime via the kernel.hung_task_timeout
> -	  sysctl or by writing a value to /proc/sys/kernel/hung_task_timeout.
> +	  It can be adjusted at runtime via the kernel.hung_task_timeout_secs
> +	  sysctl or by writing a value to
> +	  /proc/sys/kernel/hung_task_timeout_secs.
>  
>  	  A timeout of 0 disables the check.  The default is two minutes.
>  	  Keeping the default should be fine in most cases.

Acked-by: Randy Dunlap <rdunlap@xenotime.net>

Jiri, merge in trivial tree?

Jiaju, would you also add 'hung_task_timeout_secs' to
Documentation/sysctl/kernel.txt, please?


-- 
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

* Re: [PATCH] Kconfig: Fix help message for DEFAULT_HUNG_TASK_TIMEOUT
  2011-09-08 21:08 ` Randy Dunlap
@ 2011-09-09  7:46   ` Jiaju Zhang
  0 siblings, 0 replies; 3+ messages in thread
From: Jiaju Zhang @ 2011-09-09  7:46 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kbuild, jkosina, mmarek

On Thu, 2011-09-08 at 14:08 -0700, Randy Dunlap wrote:
> On 08/31/11 02:43, Jiaju Zhang wrote:
> > Added missing _secs in the help message of config DEFAULT_HUNG_TASK_TIMEOUT.
> > 
> > Signed-off-by: Jiaju Zhang <jjzhang@suse.de>
> > ---
> >  lib/Kconfig.debug |    5 +++--
> >  1 files changed, 3 insertions(+), 2 deletions(-)
> > 
> > diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
> > index c0cb9c4..f285553 100644
> > --- a/lib/Kconfig.debug
> > +++ b/lib/Kconfig.debug
> > @@ -248,8 +248,9 @@ config DEFAULT_HUNG_TASK_TIMEOUT
> >  	  to determine when a task has become non-responsive and should
> >  	  be considered hung.
> >  
> > -	  It can be adjusted at runtime via the kernel.hung_task_timeout
> > -	  sysctl or by writing a value to /proc/sys/kernel/hung_task_timeout.
> > +	  It can be adjusted at runtime via the kernel.hung_task_timeout_secs
> > +	  sysctl or by writing a value to
> > +	  /proc/sys/kernel/hung_task_timeout_secs.
> >  
> >  	  A timeout of 0 disables the check.  The default is two minutes.
> >  	  Keeping the default should be fine in most cases.
> 
> Acked-by: Randy Dunlap <rdunlap@xenotime.net>

Many thanks for the ack;)

> 
> Jiri, merge in trivial tree?
> 
> Jiaju, would you also add 'hung_task_timeout_secs' to
> Documentation/sysctl/kernel.txt, please?

Yes. It seems Andrew Morton just added it in -mm tree. In order to avoid
merge conflict, I'd like to write another patch to do this modification
when I go back to office.

Thanks,
Jiaju


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

end of thread, other threads:[~2011-09-09  7:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-31  9:43 [PATCH] Kconfig: Fix help message for DEFAULT_HUNG_TASK_TIMEOUT Jiaju Zhang
2011-09-08 21:08 ` Randy Dunlap
2011-09-09  7:46   ` Jiaju Zhang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox