summaryrefslogtreecommitdiffstats
path: root/virt
diff options
context:
space:
mode:
authorEric Auger <eric.auger@linaro.org>2015-09-18 10:29:44 -0400
committerPaolo Bonzini <pbonzini@redhat.com>2015-10-01 09:06:46 -0400
commit9016cfb577a15abd6a7990890ccf6bf1edf04d31 (patch)
treecbfbb1d9a11fe1903731b08870354674ac1eb69c /virt
parent1a02b27035f82091d51ecafcb9ccaac1f31d4eb2 (diff)
KVM: eventfd: add irq bypass consumer management
This patch adds the registration/unregistration of an irq_bypass_consumer on irqfd assignment/deassignment. Signed-off-by: Eric Auger <eric.auger@linaro.org> Signed-off-by: Feng Wu <feng.wu@intel.com> Reviewed-by: Alex Williamson <alex.williamson@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'virt')
-rw-r--r--virt/kvm/eventfd.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/virt/kvm/eventfd.c b/virt/kvm/eventfd.c
index c4f7abec4261..7df356d8f1fd 100644
--- a/virt/kvm/eventfd.c
+++ b/virt/kvm/eventfd.c
@@ -35,6 +35,7 @@
35#include <linux/srcu.h> 35#include <linux/srcu.h>
36#include <linux/slab.h> 36#include <linux/slab.h>
37#include <linux/seqlock.h> 37#include <linux/seqlock.h>
38#include <linux/irqbypass.h>
38#include <trace/events/kvm.h> 39#include <trace/events/kvm.h>
39 40
40#include <kvm/iodev.h> 41#include <kvm/iodev.h>
@@ -140,6 +141,9 @@ irqfd_shutdown(struct work_struct *work)
140 /* 141 /*
141 * It is now safe to release the object's resources 142 * It is now safe to release the object's resources
142 */ 143 */
144#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
145 irq_bypass_unregister_consumer(&irqfd->consumer);
146#endif
143 eventfd_ctx_put(irqfd->eventfd); 147 eventfd_ctx_put(irqfd->eventfd);
144 kfree(irqfd); 148 kfree(irqfd);
145} 149}
@@ -391,6 +395,17 @@ kvm_irqfd_assign(struct kvm *kvm, struct kvm_irqfd *args)
391 * we might race against the POLLHUP 395 * we might race against the POLLHUP
392 */ 396 */
393 fdput(f); 397 fdput(f);
398#ifdef CONFIG_HAVE_KVM_IRQ_BYPASS
399 irqfd->consumer.token = (void *)irqfd->eventfd;
400 irqfd->consumer.add_producer = kvm_arch_irq_bypass_add_producer;
401 irqfd->consumer.del_producer = kvm_arch_irq_bypass_del_producer;
402 irqfd->consumer.stop = kvm_arch_irq_bypass_stop;
403 irqfd->consumer.start = kvm_arch_irq_bypass_start;
404 ret = irq_bypass_register_consumer(&irqfd->consumer);
405 if (ret)
406 pr_info("irq bypass consumer (token %p) registration fails: %d\n",
407 irqfd->consumer.token, ret);
408#endif
394 409
395 return 0; 410 return 0;
396 411