ia64/xen-unstable
changeset 4258:beb68750d6e0
bitkeeper revision 1.1236.1.110 (4240375cOt3uh22RXHHKXqGhr8yvEg)
Restore "PHYSICAL MEMORY ARRANGEMENT" printk.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Restore "PHYSICAL MEMORY ARRANGEMENT" printk.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Tue Mar 22 15:18:52 2005 +0000 (2005-03-22) |
parents | 2a1695d83589 |
children | 1c7c83cdf0ed |
files | xen/arch/x86/domain_build.c |
line diff
1.1 --- a/xen/arch/x86/domain_build.c Tue Mar 22 11:37:00 2005 +0000 1.2 +++ b/xen/arch/x86/domain_build.c Tue Mar 22 15:18:52 2005 +0000 1.3 @@ -178,7 +178,13 @@ int construct_dom0(struct domain *d, 1.4 if ( (v_end - dsi.v_start) > (alloc_end - alloc_start) ) 1.5 panic("Insufficient contiguous RAM to build kernel image.\n"); 1.6 1.7 - printk("VIRTUAL MEMORY ARRANGEMENT:\n" 1.8 + printk("PHYSICAL MEMORY ARRANGEMENT:\n" 1.9 + " Dom0 alloc.: %p->%p", 1.10 + alloc_start, alloc_end); 1.11 + if ( d->tot_pages < nr_pages ) 1.12 + printk(" (%d pages to be allocated)", 1.13 + nr_pages - d->tot_pages); 1.14 + printk("\nVIRTUAL MEMORY ARRANGEMENT:\n" 1.15 " Loaded kernel: %p->%p\n" 1.16 " Init. ramdisk: %p->%p\n" 1.17 " Phys-Mach map: %p->%p\n"