It's easier to correlate with the physical memory map if the addresses are
fully printed, instead of using frame numbers.
Requested-by: Andrew Cooper <andrew.cooper3@citrix.com>
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
return true;
printk(XENLOG_WARNING
- "%s: [%#" PRI_mfn " ,%#" PRI_mfn "] is not (entirely) in reserved memory\n",
- prefix, mfn_x(start), mfn_x(end));
+ "%s: [%#lx, %#lx] is not (entirely) in reserved memory\n",
+ prefix, mfn_to_maddr(start), mfn_to_maddr(end));
for ( addr = start; mfn_x(addr) <= mfn_x(end); addr = mfn_add(addr, 1) )
{