aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-17 18:22:18 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-17 18:22:18 +0000
commit7501cca88550678b632d3a0934295c4eb3012bf5 (patch)
tree9e76cd923fd9b2718a5c9253e5f519c8ed6bca13
parent4ce65049c8a03275ae62e19d066943531017710e (diff)
downloadxen-7501cca88550678b632d3a0934295c4eb3012bf5.tar.gz
xen-7501cca88550678b632d3a0934295c4eb3012bf5.tar.bz2
xen-7501cca88550678b632d3a0934295c4eb3012bf5.zip
We found machines with >32 E820 memory map entries, where Xen fails to
boot (but Linux does boot fine). The native Linux (both x86 and x86_86) already has: #define E820MAX 128 /* number of entries in E820MAP */ Signed-off-by: Jun Nakajima <jun.nakajima@intel.com>
-rw-r--r--xen/include/asm-x86/e820.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/asm-x86/e820.h b/xen/include/asm-x86/e820.h
index f510c7c12b..e346ad64b7 100644
--- a/xen/include/asm-x86/e820.h
+++ b/xen/include/asm-x86/e820.h
@@ -3,7 +3,7 @@
#include <asm/page.h>
-#define E820MAX 32
+#define E820MAX 128
#define E820_RAM 1
#define E820_RESERVED 2