[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [XEN][POWERPC] Fix machine check build break.
# HG changeset patch # User Hollis Blanchard <hollisb@xxxxxxxxxx> # Node ID fcc0efacc17a894d8bbb3f1878fe878bf005f8e9 # Parent 38d6cf70e8f258f7f63d3456301f201a13b25958 [XEN][POWERPC] Fix machine check build break. Building exceptions.c with CRASH_DEBUG=y produces a build break, because gcc complains about the unused variable. Signed-off-by: Amos Waterland <apw@xxxxxxxxxx> Signed-off-by: Hollis Blanchard <hollisb@xxxxxxxxxx> --- xen/arch/powerpc/exceptions.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -r 38d6cf70e8f2 -r fcc0efacc17a xen/arch/powerpc/exceptions.c --- a/xen/arch/powerpc/exceptions.c Mon Sep 18 13:08:58 2006 -0500 +++ b/xen/arch/powerpc/exceptions.c Fri Sep 08 10:22:45 2006 -0500 @@ -55,11 +55,11 @@ void do_dec(struct cpu_user_regs *regs) void program_exception(struct cpu_user_regs *regs, unsigned long cookie) { - int recover = 0; - #ifdef CRASH_DEBUG __trap_to_gdb(regs, cookie); #else /* CRASH_DEBUG */ + int recover = 0; + show_registers(regs); printk("dar 0x%016lx, dsisr 0x%08x\n", mfdar(), mfdsisr()); printk("hid4 0x%016lx\n", regs->hid4); _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |