From: Julien Grall Date: Thu, 28 May 2015 09:10:47 +0000 (+0100) Subject: xen/arm: traps: Print a message in debug build when a guest dabt is not handled X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3144 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f91fab5eeab9d97123e29876b1d61dc80b31c6de;p=xen.git xen/arm: traps: Print a message in debug build when a guest dabt is not handled This is useful for debugging low level kernel before the guest as setup the vector table. Note that the value of the IPA is only here for reference and may not always be valid if the error came from a stage 1 table translation walk. Signed-off-by: Julien Grall Acked-by: Ian Campbell [ ijc -- dropped spurious w/s change ] --- diff --git a/xen/arch/arm/traps.c b/xen/arch/arm/traps.c index 47d6cef8a6..258d4c5b8b 100644 --- a/xen/arch/arm/traps.c +++ b/xen/arch/arm/traps.c @@ -2413,6 +2413,8 @@ static void do_trap_data_abort_guest(struct cpu_user_regs *regs, } bad_data_abort: + gdprintk(XENLOG_DEBUG, "HSR=0x%x pc=%#"PRIregister" gva=%#"PRIvaddr + " gpa=%#"PRIpaddr"\n", hsr.bits, regs->pc, info.gva, info.gpa); inject_dabt_exception(regs, info.gva, hsr.len); }