Messages in this thread Patch in this message |  | | | Date | Mon, 9 Oct 2006 09:26:38 +0200 | | From | Heiko Carstens <> | | Subject | [patch] 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.
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> --- lib/Kconfig.debug | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6/lib/Kconfig.debug =================================================================== --- linux-2.6.orig/lib/Kconfig.debug 2006-10-09 09:15:26.000000000 +0200 +++ linux-2.6/lib/Kconfig.debug 2006-10-09 09:25:17.000000000 +0200 @@ -71,7 +71,7 @@ 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", - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |