All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH conditional] qemu-kvm: ioeventfd fixup
@ 2010-12-12 11:47 Michael S. Tsirkin
  0 siblings, 0 replies; only message in thread
From: Michael S. Tsirkin @ 2010-12-12 11:47 UTC (permalink / raw)
  To: stefanha, kvm

Make ioeventfd patchset apply to qemu-kvm.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---

This patch will need to be applied when ioeventfd is merged in qemu.git.

 kvm-all.c  |    2 +-
 kvm.h      |    1 +
 qemu-kvm.c |    2 ++
 qemu-kvm.h |    1 +
 4 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/kvm-all.c b/kvm-all.c
index adfb892..c7bd993 100644
--- a/kvm-all.c
+++ b/kvm-all.c
@@ -455,7 +455,7 @@ int kvm_check_extension(KVMState *s, unsigned int extension)
     return ret;
 }
 
-static int kvm_check_many_ioeventfds(void)
+int kvm_check_many_ioeventfds(void)
 {
     /* Older kernels have a 6 device limit on the KVM io bus.  Find out so we
      * can avoid creating too many ioeventfds.
diff --git a/kvm.h b/kvm.h
index 45124ef..345b740 100644
--- a/kvm.h
+++ b/kvm.h
@@ -204,6 +204,7 @@ int kvm_set_irqfd(int gsi, int fd, bool assigned)
 }
 #endif
 
+int kvm_check_many_ioeventfds(void);
 int kvm_set_ioeventfd_pio_word(int fd, uint16_t adr, uint16_t val, bool assign);
 
 int kvm_has_gsi_routing(void);
diff --git a/qemu-kvm.c b/qemu-kvm.c
index 471306b..76731fe 100644
--- a/qemu-kvm.c
+++ b/qemu-kvm.c
@@ -1686,6 +1686,8 @@ static int kvm_create_context(void)
     kvm_state->xcrs = kvm_check_extension(kvm_state, KVM_CAP_XCRS);
 #endif
 
+    kvm_state->many_ioeventfds = kvm_check_many_ioeventfds();
+
     kvm_init_ap();
     if (kvm_irqchip) {
         if (!qemu_kvm_has_gsi_routing()) {
diff --git a/qemu-kvm.h b/qemu-kvm.h
index 7e6edfb..db4e340 100644
--- a/qemu-kvm.h
+++ b/qemu-kvm.h
@@ -754,6 +754,7 @@ struct KVMState {
     int irqchip_in_kernel;
     int pit_in_kernel;
     int xsave, xcrs;
+    int many_ioeventfds;
 
     struct kvm_context kvm_context;
 };
-- 
1.7.3.2.91.g446ac

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2010-12-12 11:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-12 11:47 [PATCH conditional] qemu-kvm: ioeventfd fixup Michael S. Tsirkin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.