ia64/xen-unstable
changeset 10744:d51a5ca0fa99
[powerpc] print page->count_info as unsigned long
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Fri Jul 14 10:23:52 2006 +0100 (2006-07-14) |
parents | 08906834ca74 |
children | 129e981a7700 |
files | xen/common/memory.c |
line diff
1.1 --- a/xen/common/memory.c Fri Jul 14 10:23:04 2006 +0100 1.2 +++ b/xen/common/memory.c Fri Jul 14 10:23:52 2006 +0100 1.3 @@ -174,9 +174,9 @@ guest_remove_page( 1.4 { 1.5 /* We'll make this a guest-visible error in future, so take heed! */ 1.6 DPRINTK("Dom%d freeing in-use page %lx (pseudophys %lx):" 1.7 - " count=%x type=%lx\n", 1.8 + " count=%lx type=%lx\n", 1.9 d->domain_id, mfn, get_gpfn_from_mfn(mfn), 1.10 - page->count_info, page->u.inuse.type_info); 1.11 + (unsigned long)page->count_info, page->u.inuse.type_info); 1.12 } 1.13 1.14 guest_physmap_remove_page(d, gmfn, mfn);