]> Git Repo - qemu.git/commitdiff
KVM: PPC: Add dummy kvm_arch_init_irq_routing()
authorScott Wood <[email protected]>
Wed, 12 Jun 2013 07:26:54 +0000 (17:26 +1000)
committerMichael Tokarev <[email protected]>
Wed, 12 Jun 2013 09:19:10 +0000 (13:19 +0400)
The common KVM code insists on calling kvm_arch_init_irq_routing()
as soon as it sees kernel header support for it (regardless of whether
QEMU supports it).  Provide a dummy function to satisfy this.

Unlike x86, PPC does not have one default irqchip, so there's no common
code that we'd stick here.  Even if you ignore the routes themselves,
which even on x86 are not set up in this function, the initial XICS
kernel implementation will not support IRQ routing, so it's best to
leave even the general feature flags up to the specific irqchip code.

Signed-off-by: Scott Wood <[email protected]>
Signed-off-by: Alexey Kardashevskiy <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
target-ppc/kvm.c

index 3ab2946cfb75228ade17717d420c6b003b3d8d9b..2bbc3b81ddca373774b1a844658515eaf72ec4c2 100644 (file)
@@ -1797,3 +1797,7 @@ int kvm_arch_on_sigbus(int code, void *addr)
 {
     return 1;
 }
+
+void kvm_arch_init_irq_routing(KVMState *s)
+{
+}
This page took 0.022922 seconds and 4 git commands to generate.