diff mbox

[v5,12/19] KVM: eventfd: add irq bypass information in irqfd

Message ID 1436780855-3617-13-git-send-email-feng.wu@intel.com
State New
Headers show

Commit Message

Wu, Feng July 13, 2015, 9:47 a.m. UTC
From: Eric Auger <eric.auger@linaro.org>

This patch adds the following new members in 'struct kvm_kernel_irqfd'
    - struct irq_bypass_consumer consumer
    - struct irq_bypass_producer *producer

Signed-off-by: Eric Auger <eric.auger@linaro.org>
Signed-off-by: Feng Wu <feng.wu@intel.com>
---
 include/linux/kvm_irqfd.h | 3 +++
 1 file changed, 3 insertions(+)
diff mbox

Patch

diff --git a/include/linux/kvm_irqfd.h b/include/linux/kvm_irqfd.h
index f926b39..cf9aad4 100644
--- a/include/linux/kvm_irqfd.h
+++ b/include/linux/kvm_irqfd.h
@@ -17,6 +17,7 @@ 
 
 #include <linux/kvm_host.h>
 #include <linux/poll.h>
+#include <linux/irqbypass.h>
 
 /*
  * Resampling irqfds are a special variety of irqfds used to emulate
@@ -64,6 +65,8 @@  struct kvm_kernel_irqfd {
 	struct list_head list;
 	poll_table pt;
 	struct work_struct shutdown;
+	struct irq_bypass_consumer consumer;
+	struct irq_bypass_producer *producer;
 };
 
 #endif /* __LINUX_KVM_IRQFD_H */