aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Grall <julien.grall@linaro.org>2013-10-14 23:19:37 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-10-15 10:24:29 +0100
commit720f45ad01b6a3af2d77fb8fe122d934bbadba47 (patch)
tree37f39b1cbc455470e0a823b473eff715ce44c1c1
parent6ef823fdfa701b3659e4161520f43b5835338fb5 (diff)
downloadxen-720f45ad01b6a3af2d77fb8fe122d934bbadba47.tar.gz
xen-720f45ad01b6a3af2d77fb8fe122d934bbadba47.tar.bz2
xen-720f45ad01b6a3af2d77fb8fe122d934bbadba47.zip
xen/evtchn: Fix build on ARM
The recent event channel changes introduced by commit a77eb86 and before... break the compilation on Xen ARM. This commit adds missing includes in common/event_fifo.c and include/xen/sched.h. Signed-off-by: Julien Grall <julien.grall@linaro.org> Acked-by: Ian Campbell <ian.campbell@citrix.com>
-rw-r--r--xen/common/event_fifo.c1
-rw-r--r--xen/include/xen/sched.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/xen/common/event_fifo.c b/xen/common/event_fifo.c
index eb0b97c9a5..bec8d8789f 100644
--- a/xen/common/event_fifo.c
+++ b/xen/common/event_fifo.c
@@ -16,6 +16,7 @@
#include <xen/event_fifo.h>
#include <xen/paging.h>
#include <xen/mm.h>
+#include <xen/domain_page.h>
#include <public/event_channel.h>
diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h
index c2588a5f86..25bf63776a 100644
--- a/xen/include/xen/sched.h
+++ b/xen/include/xen/sched.h
@@ -24,6 +24,7 @@
#include <public/sysctl.h>
#include <public/vcpu.h>
#include <public/mem_event.h>
+#include <public/event_channel.h>
#ifdef CONFIG_COMPAT
#include <compat/vcpu.h>