diff options
author | Andrew Morton <akpm@osdl.org> | 2007-02-16 04:27:23 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-16 11:13:56 -0500 |
commit | b463fc60730bea6cdd73fec6edc6ec4658d47d37 (patch) | |
tree | a17c9f38cfdc6f79880e24d54d748c5186762584 | |
parent | c6025a79f5d438bba0186fbb230dc780e876edf2 (diff) |
[PATCH] vmi-versus-hrtimers
arch/i386/kernel/built-in.o: In function `vmi_stop_hz_timer':
: undefined reference to `next_timer_interrupt'
If CONFIG_NO_HZ, next_timer_interrupt() doesn't exist (and presumably doesn't
make sense).
Perhaps VMI shouildn't be playing with timer internals at this level.
Cc: Zachary Amsden <zach@vmware.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/i386/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/Kconfig b/arch/i386/Kconfig index 595fb771366e..4ea31c327d1f 100644 --- a/arch/i386/Kconfig +++ b/arch/i386/Kconfig | |||
@@ -205,7 +205,7 @@ config PARAVIRT | |||
205 | 205 | ||
206 | config VMI | 206 | config VMI |
207 | bool "VMI Paravirt-ops support" | 207 | bool "VMI Paravirt-ops support" |
208 | depends on PARAVIRT | 208 | depends on PARAVIRT && !NO_HZ |
209 | default y | 209 | default y |
210 | help | 210 | help |
211 | VMI provides a paravirtualized interface to multiple hypervisors | 211 | VMI provides a paravirtualized interface to multiple hypervisors |