Commit 94f565598827e2015dce97f4c1ac4871ab84407b

Authored by OGAWA Hirofumi
Committed by Ingo Molnar
1 parent 157124c11f

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -55,5 +55,5 @@
55 55 default 1000 if HZ_1000
56 56  
57 57 config SCHED_HRTICK
58   - def_bool HIGH_RES_TIMERS && USE_GENERIC_SMP_HELPERS
  58 + def_bool HIGH_RES_TIMERS && (!SMP || USE_GENERIC_SMP_HELPERS)