aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/config.h
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-05-09 17:50:11 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-05-09 17:50:11 +0000
commit24edf4b8989a60f108982ee44590df856a8fc9b2 (patch)
treea89eadc9e53a8000808cd3b56183a860fb7c51d4 /xen/include/xen/config.h
parent09e259436510fe39c0e55a4195f5368a1a386dba (diff)
downloadxen-24edf4b8989a60f108982ee44590df856a8fc9b2.tar.gz
xen-24edf4b8989a60f108982ee44590df856a8fc9b2.tar.bz2
xen-24edf4b8989a60f108982ee44590df856a8fc9b2.zip
bitkeeper revision 1.1389.10.1 (427fa2d3ZV92f_ErvLuIzWbV1f67QA)
Phase 1 of upgrading platform code to be derived from Linux 2.6.11 rather than 2.4.x. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/include/xen/config.h')
-rw-r--r--xen/include/xen/config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/xen/include/xen/config.h b/xen/include/xen/config.h
index 95101174ba..ca3650f80f 100644
--- a/xen/include/xen/config.h
+++ b/xen/include/xen/config.h
@@ -15,7 +15,7 @@
#define always_inline __inline__ __attribute__ ((always_inline))
-/* syslog levels ==> nothing! */
+/* Linux syslog levels. */
#define KERN_NOTICE ""
#define KERN_WARNING ""
#define KERN_DEBUG ""
@@ -25,6 +25,10 @@
#define KERN_EMERG ""
#define KERN_ALERT ""
+/* Linux 'checker' project. */
+#define __iomem
+#define __user
+
#ifdef VERBOSE
#define DPRINTK(_f, _a...) printk("(file=%s, line=%d) " _f, \
__FILE__ , __LINE__ , ## _a )