diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2006-10-11 01:20:44 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 11:14:14 -0700 |
commit | dea20a3fbdd08e5ae2a0b33d2577c794a3764a11 (patch) | |
tree | 7bc5d319c2586205a40fd4e156b54d522e1f2626 /lib | |
parent | c37e108d156101dcde7ec7033eabe7abe83366bc (diff) | |
download | linux-3.10-dea20a3fbdd08e5ae2a0b33d2577c794a3764a11.tar.gz linux-3.10-dea20a3fbdd08e5ae2a0b33d2577c794a3764a11.tar.bz2 linux-3.10-dea20a3fbdd08e5ae2a0b33d2577c794a3764a11.zip |
[PATCH] Disable DETECT_SOFTLOCKUP for s390
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.
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'lib')
-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 756a908c441..2d7cb0d04fc 100644 --- a/lib/Kconfig.debug +++ b/lib/Kconfig.debug @@ -71,7 +71,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", |