Re: [PATCH] ARC: [*defconfigs] Enable hung tasks detection

From: Eugeniy Paltsev
Date: Thu Jul 21 2016 - 13:05:38 EST


Hi,
Not every time. For example, last time I debug mmap3ÂLTP's test, whichÂ
stuck in "D" state, I didn't recieve any messages until I enabled this
option.ÂThis happends on nsim 700.
On Thu, 2016-07-21 at 09:17 -0700, Vineet Gupta wrote:
> On 07/21/2016 07:52 AM, Eugeniy Paltsev wrote:
> >
> > Enable the kernel to detect "hung tasks",
> > which are bugs that cause the task to be stuck in
> > uninterruptible "D" state indefinitiley.
> spellos above
>
> >
> > Note we're setting HUNG_TASK_TIMEOUT to 10 seconds instead of
> > default 120 to shorten time required for detection of hung task,
> > as it set in axs101, axs103 and axs103_smp boards defconfigs.
> In some of the actual hang scenarios (on FPGA boards atleast) I was
> debugging, the
> hung task seemed redundant actually as I was getting RCU stall msgs
> as well. Do
> you not see something similar.
>
>
> >
> > Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@xxxxxxxxxxxx>
> >
> > Cc: Christian Ruppert <christian.ruppert@xxxxxxxxxxx>
> > Cc: Noam Camus <noamca@xxxxxxxxxxxx>
> > Cc: Vineet Gupta <vgupta@xxxxxxxxxxxx>
> > Cc: Alexey Brodkin <abrodkin@xxxxxxxxxxxx>
> > Cc: Zakharov VladÂÂ<vzakhar@xxxxxxxxxxxx>
> > ---
> > Âarch/arc/configs/nps_defconfigÂÂÂÂÂÂÂÂÂÂÂÂÂ| 2 ++
> > Âarch/arc/configs/nsim_700_defconfigÂÂÂÂÂÂÂÂ| 2 ++
> > Âarch/arc/configs/nsim_hs_defconfigÂÂÂÂÂÂÂÂÂ| 2 ++
> > Âarch/arc/configs/nsim_hs_smp_defconfigÂÂÂÂÂ| 2 ++
> > Âarch/arc/configs/nsimosci_defconfigÂÂÂÂÂÂÂÂ| 2 ++
> > Âarch/arc/configs/nsimosci_hs_defconfigÂÂÂÂÂ| 3 +++
> > Âarch/arc/configs/nsimosci_hs_smp_defconfig | 3 +++
> > Âarch/arc/configs/tb10x_defconfigÂÂÂÂÂÂÂÂÂÂÂ| 1 +
> > Â8 files changed, 17 insertions(+)
> >
> > diff --git a/arch/arc/configs/nps_defconfig
> > b/arch/arc/configs/nps_defconfig
> > index ede625c..39ccacd 100644
> > --- a/arch/arc/configs/nps_defconfig
> > +++ b/arch/arc/configs/nps_defconfig
> > @@ -81,4 +81,6 @@ CONFIG_DEBUG_INFO=y
> > Â# CONFIG_ENABLE_MUST_CHECK is not set
> > ÂCONFIG_MAGIC_SYSRQ=y
> > ÂCONFIG_DEBUG_MEMORY_INIT=y
> > +CONFIG_DETECT_HUNG_TASK=y
> > +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=10
> > ÂCONFIG_ENABLE_DEFAULT_TRACERS=y
> > diff --git a/arch/arc/configs/nsim_700_defconfig
> > b/arch/arc/configs/nsim_700_defconfig
> > index 7314f53..78c3070 100644
> > --- a/arch/arc/configs/nsim_700_defconfig
> > +++ b/arch/arc/configs/nsim_700_defconfig
> > @@ -61,4 +61,6 @@ CONFIG_TMPFS=y
> > ÂCONFIG_NFS_FS=y
> > Â# CONFIG_ENABLE_WARN_DEPRECATED is not set
> > Â# CONFIG_ENABLE_MUST_CHECK is not set
> > +CONFIG_DETECT_HUNG_TASK=y
> > +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=10
> > Â# CONFIG_DEBUG_PREEMPT is not set
> > diff --git a/arch/arc/configs/nsim_hs_defconfig
> > b/arch/arc/configs/nsim_hs_defconfig
> > index a99dc7a..c6a0a30 100644
> > --- a/arch/arc/configs/nsim_hs_defconfig
> > +++ b/arch/arc/configs/nsim_hs_defconfig
> > @@ -59,4 +59,6 @@ CONFIG_TMPFS=y
> > ÂCONFIG_NFS_FS=y
> > Â# CONFIG_ENABLE_WARN_DEPRECATED is not set
> > Â# CONFIG_ENABLE_MUST_CHECK is not set
> > +CONFIG_DETECT_HUNG_TASK=y
> > +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=10
> > Â# CONFIG_DEBUG_PREEMPT is not set
> > diff --git a/arch/arc/configs/nsim_hs_smp_defconfig
> > b/arch/arc/configs/nsim_hs_smp_defconfig
> > index 59f221f..10c5e5e 100644
> > --- a/arch/arc/configs/nsim_hs_smp_defconfig
> > +++ b/arch/arc/configs/nsim_hs_smp_defconfig
> > @@ -58,3 +58,5 @@ CONFIG_TMPFS=y
> > ÂCONFIG_NFS_FS=y
> > Â# CONFIG_ENABLE_WARN_DEPRECATED is not set
> > Â# CONFIG_ENABLE_MUST_CHECK is not set
> > +CONFIG_DETECT_HUNG_TASK=y
> > +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=10
> > diff --git a/arch/arc/configs/nsimosci_defconfig
> > b/arch/arc/configs/nsimosci_defconfig
> > index 42bafa5..973ce41 100644
> > --- a/arch/arc/configs/nsimosci_defconfig
> > +++ b/arch/arc/configs/nsimosci_defconfig
> > @@ -71,3 +71,5 @@ CONFIG_TMPFS=y
> > ÂCONFIG_NFS_FS=y
> > Â# CONFIG_ENABLE_WARN_DEPRECATED is not set
> > Â# CONFIG_ENABLE_MUST_CHECK is not set
> > +CONFIG_DETECT_HUNG_TASK=y
> > +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=10
> > diff --git a/arch/arc/configs/nsimosci_hs_defconfig
> > b/arch/arc/configs/nsimosci_hs_defconfig
> > index 4bb60c1..c0b99d7 100644
> > --- a/arch/arc/configs/nsimosci_hs_defconfig
> > +++ b/arch/arc/configs/nsimosci_hs_defconfig
> > @@ -70,3 +70,6 @@ CONFIG_TMPFS=y
> > ÂCONFIG_NFS_FS=y
> > Â# CONFIG_ENABLE_WARN_DEPRECATED is not set
> > Â# CONFIG_ENABLE_MUST_CHECK is not set
> > +CONFIG_DEBUG_KERNEL=y
> > +CONFIG_DETECT_HUNG_TASK=y
> > +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=10
> > diff --git a/arch/arc/configs/nsimosci_hs_smp_defconfig
> > b/arch/arc/configs/nsimosci_hs_smp_defconfig
> > index 7e88f4c..4012585 100644
> > --- a/arch/arc/configs/nsimosci_hs_smp_defconfig
> > +++ b/arch/arc/configs/nsimosci_hs_smp_defconfig
> > @@ -84,3 +84,6 @@ CONFIG_NFS_FS=y
> > Â# CONFIG_ENABLE_WARN_DEPRECATED is not set
> > Â# CONFIG_ENABLE_MUST_CHECK is not set
> > ÂCONFIG_FTRACE=y
> > +CONFIG_DEBUG_KERNEL=y
> > +CONFIG_DETECT_HUNG_TASK=y
> > +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=10
> > diff --git a/arch/arc/configs/tb10x_defconfig
> > b/arch/arc/configs/tb10x_defconfig
> > index 4c51183..e8a96eb 100644
> > --- a/arch/arc/configs/tb10x_defconfig
> > +++ b/arch/arc/configs/tb10x_defconfig
> > @@ -104,6 +104,7 @@ CONFIG_MAGIC_SYSRQ=y
> > ÂCONFIG_DEBUG_MEMORY_INIT=y
> > ÂCONFIG_DEBUG_STACKOVERFLOW=y
> > ÂCONFIG_DETECT_HUNG_TASK=y
> > +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=10
> > ÂCONFIG_SCHEDSTATS=y
> > ÂCONFIG_TIMER_STATS=y
> > Â# CONFIG_CRYPTO_HW is not set
> >