From: Andrew Cooper Date: Tue, 5 Sep 2017 16:54:45 +0000 (+0100) Subject: x86/traps: Fix show_page_walk() to avoid printing trailing whitespace X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~1480 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=fd903a35daf3e7e6bfa782b18dfd43746f940bed;p=xen.git x86/traps: Fix show_page_walk() to avoid printing trailing whitespace This moves the L2 line to be consistent with the L3 line. Signed-off-by: Andrew Cooper Reviewed-by: Wei Liu Acked-by: Jan Beulich --- diff --git a/xen/arch/x86/x86_64/traps.c b/xen/arch/x86/x86_64/traps.c index 41ec78f8fc..f811c6893f 100644 --- a/xen/arch/x86/x86_64/traps.c +++ b/xen/arch/x86/x86_64/traps.c @@ -206,9 +206,9 @@ void show_page_walk(unsigned long addr) mfn = l2e_get_pfn(l2e); pfn = mfn_valid(_mfn(mfn)) && machine_to_phys_mapping_valid ? get_gpfn_from_mfn(mfn) : INVALID_M2P_ENTRY; - printk(" L2[0x%03lx] = %"PRIpte" %016lx %s\n", + printk(" L2[0x%03lx] = %"PRIpte" %016lx%s\n", l2_table_offset(addr), l2e_get_intpte(l2e), pfn, - (l2e_get_flags(l2e) & _PAGE_PSE) ? "(PSE)" : ""); + (l2e_get_flags(l2e) & _PAGE_PSE) ? " (PSE)" : ""); if ( !(l2e_get_flags(l2e) & _PAGE_PRESENT) || (l2e_get_flags(l2e) & _PAGE_PSE) || !mfn_valid(_mfn(mfn)) )