From 668c718e3f0dff2132ba4b7022cb3d638d83fcf3 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Wed, 8 Nov 2006 19:48:46 +0000 Subject: [PATCH] [HVM] Reserve 2 pages for ACPI tables in e820. This is required when appending SSDTs to the core ACPI data. Signed-off-by: Keir Fraser --- tools/libxc/xc_hvm_build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxc/xc_hvm_build.c b/tools/libxc/xc_hvm_build.c index 3bc4a01ce9..25a33096ca 100644 --- a/tools/libxc/xc_hvm_build.c +++ b/tools/libxc/xc_hvm_build.c @@ -77,7 +77,7 @@ static void build_e820map(void *e820_page, unsigned long long mem_size) nr_map++; e820entry[nr_map].addr = 0xEA000; - e820entry[nr_map].size = 0x01000; + e820entry[nr_map].size = 0x02000; e820entry[nr_map].type = E820_ACPI; nr_map++; -- 2.30.2