]> xenbits.xensource.com Git - xen.git/commitdiff
[IA64] Remove debugger calls from panic_domain()
authorawilliam@xenbuild2.aw <awilliam@xenbuild2.aw>
Tue, 27 Mar 2007 15:07:51 +0000 (09:07 -0600)
committerawilliam@xenbuild2.aw <awilliam@xenbuild2.aw>
Tue, 27 Mar 2007 15:07:51 +0000 (09:07 -0600)
These hang when compiled with crash_debug=y

Signed-off-by: Akio Takebe <takebe_akio@jp.fujitsu.com>
xen/arch/ia64/xen/xenmisc.c

index db4d14975b30745d3902daac618573022fbb6cc1..450ec450797eeb7d145b45b887a01e6619261911 100644 (file)
@@ -166,11 +166,7 @@ void panic_domain(struct pt_regs *regs, const char *fmt, ...)
        (void)vsnprintf(buf, sizeof(buf), fmt, args);
        va_end(args);
        printk(buf);
-       if (regs) show_registers(regs);
-       if (regs) {
-               debugger_trap_fatal(0 /* don't care */, regs);
-       } else {
-               debugger_trap_immediate();
-       }
+       if (regs)
+               show_registers(regs);
        domain_crash_synchronous ();
 }