qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] KVM: Fix compilation on non-x86
@ 2012-01-25 17:33 Alexander Graf
  2012-01-25 17:40 ` Jan Kiszka
  2012-02-06 18:33 ` Marcelo Tosatti
  0 siblings, 2 replies; 5+ messages in thread
From: Alexander Graf @ 2012-01-25 17:33 UTC (permalink / raw)
  To: qemu-ppc; +Cc: jan.kiszka, aliguori, mtosatti, qemu-devel Developers, kvm

Commit 84b058d broke compilation for KVM on non-x86 targets, which
don't have KVM_CAP_IRQ_ROUTING defined.

Fix by not using the unavailable constant when it's not around.

Signed-off-by: Alexander Graf <agraf@suse.de>
---
 kvm-all.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/kvm-all.c b/kvm-all.c
index e411d3c..831f39a 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -1305,7 +1305,11 @@ int kvm_has_many_ioeventfds(void)
 
 int kvm_has_gsi_routing(void)
 {
+#ifdef KVM_CAP_IRQ_ROUTING
     return kvm_check_extension(kvm_state, KVM_CAP_IRQ_ROUTING);
+#else
+    return false;
+#endif
 }
 
 int kvm_allows_irq0_override(void)
-- 
1.6.0.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-02-06 18:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-25 17:33 [Qemu-devel] [PATCH] KVM: Fix compilation on non-x86 Alexander Graf
2012-01-25 17:40 ` Jan Kiszka
2012-01-25 17:45   ` Alexander Graf
2012-01-25 17:59     ` Jan Kiszka
2012-02-06 18:33 ` Marcelo Tosatti

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).