diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2008-04-11 00:33:23 +0300 |
---|---|---|
committer | Adrian Bunk <bunk@kernel.org> | 2008-04-11 00:33:23 +0300 |
commit | 8b828b3c8e88d9c462f5389654c84aae3e42392e (patch) | |
tree | c9fb0e76c248ce76a7e038a38c0741cb701d9ccc | |
parent | 363aae61f7124e3f4ecc19d150a69f701bc098fa (diff) | |
download | lwn-8b828b3c8e88d9c462f5389654c84aae3e42392e.tar.gz lwn-8b828b3c8e88d9c462f5389654c84aae3e42392e.zip |
Disable DETECT_SOFTLOCKUP for s390
From: Heiko Carstens <heiko.carstens@de.ibm.com>
We got several false bug reports because of enabled
CONFIG_DETECT_SOFTLOCKUP. Disable soft lockup detection on s390, since it
doesn't work on a virtualized architecture.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
-rw-r--r-- | lib/Kconfig.debug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug index a314e663d517..ac36b2d0e422 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -48,7 +48,7 @@ config LOG_BUF_SHIFT config DETECT_SOFTLOCKUP bool "Detect Soft Lockups" - depends on DEBUG_KERNEL + depends on DEBUG_KERNEL && !S390 default y help Say Y here to enable the kernel to detect "soft lockups", |