From: OGAWA Hirofumi Date: Sun, 27 Jul 2008 11:27:06 +0000 (+0900) Subject: sched: fix SCHED_HRTICK dependency X-Git-Tag: v2.6.27-rc3~48^2~7 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=94f565598827e2015dce97f4c1ac4871ab84407b;p=linux-2.6-omap-h63xx.git sched: fix SCHED_HRTICK dependency Currently, it seems SCHED_HRTICK allowed for !SMP. But, it seems to have no dependency of it. Fix it. Signed-off-by: OGAWA Hirofumi Signed-off-by: Ingo Molnar --- diff --git a/kernel/Kconfig.hz b/kernel/Kconfig.hz index 382dd5a8b2d..94fabd534b0 100644 --- a/kernel/Kconfig.hz +++ b/kernel/Kconfig.hz @@ -55,4 +55,4 @@ config HZ default 1000 if HZ_1000 config SCHED_HRTICK - def_bool HIGH_RES_TIMERS && USE_GENERIC_SMP_HELPERS + def_bool HIGH_RES_TIMERS && (!SMP || USE_GENERIC_SMP_HELPERS)