From 928b0bda3de6e97ed72c727d9cbb04e0857ac9e9 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 14 Oct 2014 16:56:37 -0600 Subject: [PATCH] Default for CONFIG_SCHED_HPWORK should be no --- sched/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sched/Kconfig b/sched/Kconfig index 791e9194b1..03f701ea23 100644 --- a/sched/Kconfig +++ b/sched/Kconfig @@ -826,7 +826,7 @@ config SCHED_WORKQUEUE config SCHED_HPWORK bool "High priority (kernel) worker thread" - default y + default n depends on !DISABLE_SIGNALS select SCHED_WORKQUEUE ---help---