From: kfraser@localhost.localdomain Date: Fri, 3 Nov 2006 10:26:36 +0000 (+0000) Subject: [XEN] Quieten down tracing when fail (quite expectedly) to map INVALID_MFN. X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2d6e367ecc3c32c0aa5bd5c61e34208f18af9039;p=xen.git [XEN] Quieten down tracing when fail (quite expectedly) to map INVALID_MFN. Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/mm.c b/xen/arch/x86/mm.c index 88d031fac4..fd0745773e 100644 --- a/xen/arch/x86/mm.c +++ b/xen/arch/x86/mm.c @@ -572,8 +572,9 @@ get_page_from_l1e( if ( !iomem_access_permitted(d, mfn, mfn) ) { - MEM_LOG("Non-privileged (%u) attempt to map I/O space %08lx", - d->domain_id, mfn); + if ( mfn != INVALID_MFN ) + MEM_LOG("Non-privileged (%u) attempt to map I/O space %08lx", + d->domain_id, mfn); return 0; }