public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix KVM includes in helper.c
@ 2008-12-22 16:54 Alexander Graf
  2008-12-24 10:38 ` Avi Kivity
  0 siblings, 1 reply; 6+ messages in thread
From: Alexander Graf @ 2008-12-22 16:54 UTC (permalink / raw)
  To: kvm; +Cc: avi

By default target-i386/helper.c does not include config.h, so
no code in there knows if we're enabling KVM or not.
This breaks the nested activation, as that's depending on the
config options.

Of course, with this patch applied the CPUID KVM checks are
applied twice, as now kvm_enabled() does not default to true
for the cpuid helper functions. Maybe it's a good idea to
remove the qemu-kvm-x86.c cpuid code?

This patch fixes compilation broken thanks to my nested SVM
patches.

Signed-off-by: Alexander Graf <agraf@suse.de>
---
 qemu/qemu-kvm.h           |    1 +
 qemu/target-i386/helper.c |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/qemu/qemu-kvm.h b/qemu/qemu-kvm.h
index 154ff63..7224820 100644
--- a/qemu/qemu-kvm.h
+++ b/qemu/qemu-kvm.h
@@ -161,6 +161,7 @@ int qemu_kvm_has_sync_mmu(void);
 void kvm_init_vcpu(CPUState *env);
 #else
 #define kvm_enabled() (0)
+#define kvm_nested 0
 #define qemu_kvm_irqchip_in_kernel() (0)
 #define qemu_kvm_pit_in_kernel() (0)
 #define kvm_has_sync_mmu() (0)
diff --git a/qemu/target-i386/helper.c b/qemu/target-i386/helper.c
index 1c5b85c..04da2b0 100644
--- a/qemu/target-i386/helper.c
+++ b/qemu/target-i386/helper.c
@@ -30,6 +30,7 @@
 #include "qemu-common.h"
 #include "kvm.h"
 
+#include "config.h"
 #include "qemu-kvm.h"
 
 //#define DEBUG_MMU
-- 
1.5.6


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-12-24 11:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-22 16:54 [PATCH] Fix KVM includes in helper.c Alexander Graf
2008-12-24 10:38 ` Avi Kivity
2008-12-24 10:49   ` Alexander Graf
2008-12-24 11:33     ` Avi Kivity
2008-12-24 10:58   ` Alexander Graf
2008-12-24 11:38     ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox