aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-arm/config.h
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2013-02-27 13:14:54 +0000
committerIan Campbell <ian.campbell@citrix.com>2013-03-12 15:46:50 +0000
commitfde3412217a1e84e2601e591ca92e82a208d9688 (patch)
tree89c931bfd9d64739f14b8d4bbc9f8fdd05d8fb08 /xen/include/asm-arm/config.h
parent49cc1f0431b7ff62780fc84975302eb444edbe05 (diff)
downloadxen-fde3412217a1e84e2601e591ca92e82a208d9688.tar.gz
xen-fde3412217a1e84e2601e591ca92e82a208d9688.tar.bz2
xen-fde3412217a1e84e2601e591ca92e82a208d9688.zip
xen: correct BITS_PER_EVTCHN_WORD on arm
This is always 64-bit on ARM, not BITS_PER_LONG Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/include/asm-arm/config.h')
-rw-r--r--xen/include/asm-arm/config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/xen/include/asm-arm/config.h b/xen/include/asm-arm/config.h
index 3910dd27f3..8be85634ed 100644
--- a/xen/include/asm-arm/config.h
+++ b/xen/include/asm-arm/config.h
@@ -22,6 +22,9 @@
#define BYTES_PER_LONG (1 << LONG_BYTEORDER)
#define BITS_PER_LONG (BYTES_PER_LONG << 3)
+/* xen_ulong_t is always 64 bits */
+#define BITS_PER_XEN_ULONG 64
+
#define CONFIG_PAGING_ASSISTANCE 1
#define CONFIG_PAGING_LEVELS 3