diff options
author | OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> | 2008-07-27 20:27:06 +0900 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-28 14:37:38 +0200 |
commit | 94f565598827e2015dce97f4c1ac4871ab84407b (patch) | |
tree | a982f636ede6e597fdc8542eb8ed1d54a14482a5 /kernel/Kconfig.hz | |
parent | 157124c11f4217733691223ecf5ee47558ae9495 (diff) |
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 <hirofumi@mail.parknet.co.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/Kconfig.hz')
-rw-r--r-- | kernel/Kconfig.hz | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/Kconfig.hz b/kernel/Kconfig.hz index 382dd5a8b2d7..94fabd534b03 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) |