[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] Use existing config check when including eventfd.h
From: |
Mike McCormack |
Subject: |
[Qemu-devel] [PATCH] Use existing config check when including eventfd.h |
Date: |
Thu, 22 Jul 2010 08:45:40 +0900 |
User-agent: |
Mozilla-Thunderbird 2.0.0.24 (X11/20100328) |
Signed-off-by: Mike McCormack <address@hidden>
---
hw/vhost.c | 2 ++
hw/vhost_net.c | 2 ++
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/hw/vhost.c b/hw/vhost.c
index d37a66e..e1cd4d2 100644
--- a/hw/vhost.c
+++ b/hw/vhost.c
@@ -11,7 +11,9 @@
*/
#include <sys/ioctl.h>
+#ifdef CONFIG_EVENTFD
#include <sys/eventfd.h>
+#endif
#include "vhost.h"
#include "hw/hw.h"
/* For range_get_last */
diff --git a/hw/vhost_net.c b/hw/vhost_net.c
index 606aa0c..f4bddd4 100644
--- a/hw/vhost_net.c
+++ b/hw/vhost_net.c
@@ -20,7 +20,9 @@
#ifdef CONFIG_VHOST_NET
#include <linux/vhost.h>
+#ifdef CONFIG_EVENTFD
#include <sys/eventfd.h>
+#endif
#include <sys/socket.h>
#include <linux/kvm.h>
#include <fcntl.h>
--
1.5.6.5
- [Qemu-devel] [PATCH] Use existing config check when including eventfd.h,
Mike McCormack <=