From 48475e14841f3c3a245bc4c13f9115520c89f2d7 Mon Sep 17 00:00:00 2001 From: Alexey Kardashevskiy Date: Wed, 12 Jun 2013 17:26:53 +1000 Subject: KVM: S390: Add dummy kvm_arch_init_irq_routing() 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. Signed-off-by: Alexey Kardashevskiy Signed-off-by: Michael Tokarev --- target-s390x/kvm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index 862fb12c84..4d9ac4ad0c 100644 --- a/target-s390x/kvm.c +++ b/target-s390x/kvm.c @@ -928,3 +928,7 @@ void kvm_s390_enable_css_support(S390CPU *cpu) r = kvm_vcpu_ioctl(CPU(cpu), KVM_ENABLE_CAP, &cap); assert(r == 0); } + +void kvm_arch_init_irq_routing(KVMState *s) +{ +} -- cgit v1.2.3