qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [Qemu-ppc] [PATCH] PPC: Add non-kvm stub file


From: Alexander Graf
Subject: Re: [Qemu-devel] [Qemu-ppc] [PATCH] PPC: Add non-kvm stub file
Date: Fri, 28 Jun 2013 13:56:23 +0200

On 28.06.2013, at 13:54, Alexander Graf wrote:

> There are cases where a kvm provided function is called from generic
> hw code that doesn't know whether kvm is available or not. Provide
> a stub file which can provide simple replacement functions for those
> cases.
> 
> Signed-off-by: Alexander Graf <address@hidden>

This by itself looks quite meager. I want to prepend this to the openpic kvm 
patch and squash the following chunk into that one to fix broken compilation on 
non-ppc systems:


diff --git a/target-ppc/kvm-stub.c b/target-ppc/kvm-stub.c
index 0f5c27d..ee3f5d2 100644
--- a/target-ppc/kvm-stub.c
+++ b/target-ppc/kvm-stub.c
@@ -10,3 +10,9 @@
  *
  */
 #include "qemu-common.h"
+#include "hw/ppc/openpic.h"
+
+int kvm_openpic_connect_vcpu(DeviceState *d, CPUState *cs)
+{
+    return -EINVAL;
+}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]