Skip to content

Commit

Permalink
sched: fix hrtick & generic-ipi dependency
Browse files Browse the repository at this point in the history
Andrew Morton reported this s390 allmodconfig build failure:

 kernel/built-in.o: In function `hrtick_start_fair':
 sched.c:(.text+0x69c6): undefined reference to `__smp_call_function_single'

the reason is that s390 is not a generic-ipi SMP platform yet, while
the hrtick code relies on it. Fix the dependency.

Signed-off-by: Ingo Molnar <[email protected]>
  • Loading branch information
Ingo Molnar committed Jul 23, 2008
1 parent 3165651 commit 422037b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/Kconfig.hz
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ config HZ
default 1000 if HZ_1000

config SCHED_HRTICK
def_bool HIGH_RES_TIMERS
def_bool HIGH_RES_TIMERS && USE_GENERIC_SMP_HELPERS

0 comments on commit 422037b

Please sign in to comment.