Displaying 1 result from an estimated 1 matches for "9c38bd1".
2011 Apr 07
3
Re: xen: do not create the extra e820 region at an addr lower than 4G
...e pull request, it should go to a list.
BTW the version in Konrad''s tree is Stefano''s 2.6.39-rc1-fixes branch
but Stefano''s tree only has 2.6.39-rc2-fixes now -- is that important?
Anyway, the patch itself:
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
index 9c38bd1..f831568 100644
--- a/arch/x86/xen/setup.c
+++ b/arch/x86/xen/setup.c
@@ -229,7 +229,7 @@ char * __init xen_memory_setup(void)
memcpy(map_raw, map, sizeof(map));
e820.nr_map = 0;
- xen_extra_mem_start = mem_end;
+ xen_extra_mem_start = mem_end < (1UL<<32) ? (1...