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-ppc-devel

[XenPPC] [pushed] [ppc] cannot handle holes in memory yet

To: xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
Subject: [XenPPC] [pushed] [ppc] cannot handle holes in memory yet
From: jimix@xxxxxxxxxxxxxx
Date: Mon, 01 May 2006 16:04:56 -0400
Delivery-date: Mon, 01 May 2006 13:03:48 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-ppc-devel-request@lists.xensource.com?subject=help>
List-id: Xen PPC development <xen-ppc-devel.lists.xensource.com>
List-post: <mailto:xen-ppc-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-ppc-devel-bounces@xxxxxxxxxxxxxxxxxxx
changeset:   9960:55a15be14e7c41539fe7d827c4746bf976d2f935
tag:         tip
user:        jimix@xxxxxxxxxxxxxxxxxxxxx
date:        Mon May  1 16:04:05 2006 -0400
files:       xen/arch/ppc/setup.c
description:
[ppc] cannot handle holes in memory yet


diff -r 2f6619a3cc8e10718e71c3e99ab4423fbeabeb2e -r 
55a15be14e7c41539fe7d827c4746bf976d2f935 xen/arch/ppc/setup.c
--- a/xen/arch/ppc/setup.c      Fri Apr 28 17:47:06 2006 -0400
+++ b/xen/arch/ppc/setup.c      Mon May  1 16:04:05 2006 -0400
@@ -220,6 +220,11 @@ static void __init __start_xen(multiboot
 
         printk(" %016lx - %016lx (usable)\n", addr, end);
 
+        if (addr > eomem) {
+            printk("found a hole skipping remainder of memory at:\n"
+                   " %016lx and beyond\n", addr);
+            break;
+        }
         if (end > eomem) {
             eomem = end;
         }



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

<Prev in Thread] Current Thread [Next in Thread>
  • [XenPPC] [pushed] [ppc] cannot handle holes in memory yet, jimix <=