[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-changelog] [xen-unstable] [XEN] Make some implicit header includes explicit.



# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxxx
# Node ID 03fd2accb4d9cbb50c69e6b183a76ac83fff0145
# Parent  2d70f2de180989078dc104479bef6b713f88d33a
[XEN] Make some implicit header includes explicit.
Signed-off-by: Tristan Gingold <tristan.gingold@xxxxxxxx>
---
 xen/common/elf.c          |    1 +
 xen/common/memory.c       |    1 +
 xen/common/rangeset.c     |    1 +
 xen/common/sched_bvt.c    |    1 +
 xen/common/sched_credit.c |    2 +-
 xen/common/sched_sedf.c   |    1 +
 xen/common/schedule.c     |    1 +
 xen/common/trace.c        |    1 +
 xen/drivers/char/serial.c |    1 +
 9 files changed, 9 insertions(+), 1 deletion(-)

diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/common/elf.c
--- a/xen/common/elf.c  Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/common/elf.c  Sat Aug 19 11:13:17 2006 +0100
@@ -10,6 +10,7 @@
 #include <xen/mm.h>
 #include <xen/elf.h>
 #include <xen/sched.h>
+#include <xen/errno.h>
 
 static void loadelfsymtab(struct domain_setup_info *dsi, int doload);
 static inline int is_loadable_phdr(Elf_Phdr *phdr)
diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/common/memory.c
--- a/xen/common/memory.c       Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/common/memory.c       Sat Aug 19 11:13:17 2006 +0100
@@ -17,6 +17,7 @@
 #include <xen/shadow.h>
 #include <xen/iocap.h>
 #include <xen/guest_access.h>
+#include <xen/errno.h>
 #include <asm/current.h>
 #include <asm/hardirq.h>
 #include <public/memory.h>
diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/common/rangeset.c
--- a/xen/common/rangeset.c     Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/common/rangeset.c     Sat Aug 19 11:13:17 2006 +0100
@@ -8,6 +8,7 @@
  */
 
 #include <xen/sched.h>
+#include <xen/errno.h>
 #include <xen/rangeset.h>
 
 /* An inclusive range [s,e] and pointer to next range in ascending order. */
diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/common/sched_bvt.c
--- a/xen/common/sched_bvt.c    Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/common/sched_bvt.c    Sat Aug 19 11:13:17 2006 +0100
@@ -24,6 +24,7 @@
 #include <xen/perfc.h>
 #include <xen/sched-if.h>
 #include <xen/softirq.h>
+#include <xen/errno.h>
 
 /* all per-domain BVT-specific scheduling info is stored here */
 struct bvt_vcpu_info
diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/common/sched_credit.c
--- a/xen/common/sched_credit.c Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/common/sched_credit.c Sat Aug 19 11:13:17 2006 +0100
@@ -20,7 +20,7 @@
 #include <xen/sched-if.h>
 #include <xen/softirq.h>
 #include <asm/atomic.h>
-
+#include <xen/errno.h>
 
 /*
  * CSCHED_STATS
diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/common/sched_sedf.c
--- a/xen/common/sched_sedf.c   Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/common/sched_sedf.c   Sat Aug 19 11:13:17 2006 +0100
@@ -12,6 +12,7 @@
 #include <xen/timer.h>
 #include <xen/softirq.h>
 #include <xen/time.h>
+#include <xen/errno.h>
 
 /*verbosity settings*/
 #define SEDFLEVEL 0
diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/common/schedule.c
--- a/xen/common/schedule.c     Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/common/schedule.c     Sat Aug 19 11:13:17 2006 +0100
@@ -27,6 +27,7 @@
 #include <xen/softirq.h>
 #include <xen/trace.h>
 #include <xen/mm.h>
+#include <xen/errno.h>
 #include <xen/guest_access.h>
 #include <public/sched.h>
 #include <public/sched_ctl.h>
diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/common/trace.c
--- a/xen/common/trace.c        Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/common/trace.c        Sat Aug 19 11:13:17 2006 +0100
@@ -30,6 +30,7 @@
 #include <xen/event.h>
 #include <xen/softirq.h>
 #include <xen/init.h>
+#include <xen/mm.h>
 #include <xen/percpu.h>
 #include <asm/atomic.h>
 #include <public/dom0_ops.h>
diff -r 2d70f2de1809 -r 03fd2accb4d9 xen/drivers/char/serial.c
--- a/xen/drivers/char/serial.c Sat Aug 19 11:08:40 2006 +0100
+++ b/xen/drivers/char/serial.c Sat Aug 19 11:13:17 2006 +0100
@@ -12,6 +12,7 @@
 #include <xen/irq.h>
 #include <xen/keyhandler.h> 
 #include <xen/sched.h>
+#include <xen/mm.h>
 #include <xen/serial.h>
 
 static struct serial_port com[2] = {

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.