WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] xen: Fix 32-bit boot.

# HG changeset patch
# User Keir Fraser <keir@xxxxxxxxxxxxx>
# Date 1184397557 -3600
# Node ID a17f20a0fd197e4346891a9312776c1bc2423035
# Parent  5055b8462455fae1d940d1fd823e411bf314f5c8
xen: Fix 32-bit boot.
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
---
 xen/arch/x86/domain_build.c |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)

diff -r 5055b8462455 -r a17f20a0fd19 xen/arch/x86/domain_build.c
--- a/xen/arch/x86/domain_build.c       Fri Jul 13 17:08:05 2007 +0100
+++ b/xen/arch/x86/domain_build.c       Sat Jul 14 08:19:17 2007 +0100
@@ -434,8 +434,7 @@ int __init construct_dom0(
 
 #ifdef __i386__
     /* Ensure that our low-memory 1:1 mapping covers the allocation. */
-    page = alloc_domheap_pages(d, order,
-                               MEMF_bits(30 + (v_start >> 31)));
+    page = alloc_domheap_pages(d, order, MEMF_bits(30));
 #else
     page = alloc_domheap_pages(d, order, 0);
 #endif

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] xen: Fix 32-bit boot., Xen patchbot-unstable <=