From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53715) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmfSb-0003Sa-FG for qemu-devel@nongnu.org; Wed, 12 Jun 2013 03:27:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UmfSa-0001QZ-FK for qemu-devel@nongnu.org; Wed, 12 Jun 2013 03:27:13 -0400 Received: from mail-pa0-x234.google.com ([2607:f8b0:400e:c03::234]:64303) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmfSa-0001QK-9L for qemu-devel@nongnu.org; Wed, 12 Jun 2013 03:27:12 -0400 Received: by mail-pa0-f52.google.com with SMTP id kq13so3320393pab.39 for ; Wed, 12 Jun 2013 00:27:11 -0700 (PDT) From: Alexey Kardashevskiy Date: Wed, 12 Jun 2013 17:26:53 +1000 Message-Id: <1371022015-7576-3-git-send-email-aik@ozlabs.ru> In-Reply-To: <1371022015-7576-1-git-send-email-aik@ozlabs.ru> References: <1371022015-7576-1-git-send-email-aik@ozlabs.ru> Subject: [Qemu-devel] [PATCH 2/4] KVM: S390: Add dummy kvm_arch_init_irq_routing() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexey Kardashevskiy , qemu-trivial@nongnu.org, qemu-ppc@nongnu.org, Alexander Graf 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 --- target-s390x/kvm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target-s390x/kvm.c b/target-s390x/kvm.c index 862fb12..4d9ac4a 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) +{ +} -- 1.7.10.4