xen/evtchn: Fix build on ARM
authorJulien Grall <julien.grall@linaro.org>
Mon, 14 Oct 2013 22:19:37 +0000 (23:19 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Tue, 15 Oct 2013 09:24:29 +0000 (10:24 +0100)
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>
xen/common/event_fifo.c
xen/include/xen/sched.h

index eb0b97c9a549eb4319d951941941ba5c877023b6..bec8d8789f6f30e3fc47b3bea5bed3cea289d73e 100644 (file)
@@ -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>
 
index c2588a5f86dc7b94365fb3acccb5caf97566828e..25bf63776a1da1dbcf65704cafa1d326adbcabb2 100644 (file)
@@ -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>