]> git.proxmox.com Git - mirror_qemu.git/blobdiff - target-i386/kvm-stub.c
smbios: Move table build tools into an include file.
[mirror_qemu.git] / target-i386 / kvm-stub.c
index 11429c461e786955c40890443fcd8db5398fae5c..cdf15061091df6c960bca738ea2f7fc05d597e7c 100644 (file)
@@ -9,10 +9,29 @@
  * See the COPYING file in the top-level directory.
  *
  */
+#include "qemu/osdep.h"
 #include "qemu-common.h"
+#include "cpu.h"
 #include "kvm_i386.h"
 
 bool kvm_allows_irq0_override(void)
 {
     return 1;
 }
+
+#ifndef __OPTIMIZE__
+bool kvm_has_smm(void)
+{
+    return 1;
+}
+
+/* This function is only called inside conditionals which we
+ * rely on the compiler to optimize out when CONFIG_KVM is not
+ * defined.
+ */
+uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function,
+                                      uint32_t index, int reg)
+{
+    abort();
+}
+#endif