[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] xen/panic: Tweak string formatting
A few calls to panic() miss a newline in the format string, causing the lower line of *******'s to start immediately instead of on the next line. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> diff -r 7babbd46586b -r a20f79411a5f xen/arch/x86/cpu/mcheck/mce.c --- a/xen/arch/x86/cpu/mcheck/mce.c +++ b/xen/arch/x86/cpu/mcheck/mce.c @@ -1536,7 +1536,7 @@ void mc_panic(char *s) " The processor has reported a hardware error which cannot\n" " be recovered from. Xen will now reboot the machine.\n"); mc_panic_dump(); - panic("HARDWARE ERROR"); + panic("HARDWARE ERROR\n"); } /* Machine Check owner judge algorithm: diff -r 7babbd46586b -r a20f79411a5f xen/arch/x86/io_apic.c --- a/xen/arch/x86/io_apic.c +++ b/xen/arch/x86/io_apic.c @@ -122,7 +122,7 @@ static void add_pin_to_irq(unsigned int if (entry->pin != -1) { if (irq_2_pin_free_entry >= PIN_MAP_SIZE) - panic("io_apic.c: whoops"); + panic("io_apic.c: whoops\n"); entry->next = irq_2_pin_free_entry; entry = irq_2_pin + entry->next; irq_2_pin_free_entry = entry->next; @@ -1959,7 +1959,7 @@ static void __init check_timer(void) } printk(" failed :(.\n"); panic("IO-APIC + timer doesn't work! Boot with apic_verbosity=debug " - "and send a report. Then try booting with the 'noapic' option"); + "and send a report. Then try booting with the 'noapic' option\n"); } /* diff -r 7babbd46586b -r a20f79411a5f xen/arch/x86/mm.c --- a/xen/arch/x86/mm.c +++ b/xen/arch/x86/mm.c @@ -204,7 +204,7 @@ static void __init init_frametable_chunk mfn = alloc_boot_pages(step, step); } while ( !mfn && (step >>= PAGETABLE_ORDER) ); if ( !mfn ) - panic("Not enough memory for frame table"); + panic("Not enough memory for frame table\n"); map_pages_to_xen(s, mfn, step, PAGE_HYPERVISOR); } _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |