WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-ppc-devel

[XenPPC] [pushed] [ppc] preint the leading zeros for DAR and DSISR

To: xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
Subject: [XenPPC] [pushed] [ppc] preint the leading zeros for DAR and DSISR
From: jimix@xxxxxxxxxxxxxx
Date: Mon, 15 May 2006 17:50:15 -0400
Delivery-date: Mon, 15 May 2006 14:48:27 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-ppc-devel-request@lists.xensource.com?subject=help>
List-id: Xen PPC development <xen-ppc-devel.lists.xensource.com>
List-post: <mailto:xen-ppc-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-ppc-devel-bounces@xxxxxxxxxxxxxxxxxxx
changeset:   10271:d72f152493c099d44263a6668cd083f6ff93c4df
user:        jimix@xxxxxxxxxxxxxxxxxxxxx
date:        Fri May 12 16:26:49 2006 -0400
files:       xen/arch/ppc/exceptions.c
description:
[ppc] preint the leading zeros for DAR and DSISR


diff -r f2da5ea4af217b089c655121a7d32889e5631067 -r 
d72f152493c099d44263a6668cd083f6ff93c4df xen/arch/ppc/exceptions.c
--- a/xen/arch/ppc/exceptions.c Fri May 12 16:06:30 2006 -0400
+++ b/xen/arch/ppc/exceptions.c Fri May 12 16:26:49 2006 -0400
@@ -94,7 +94,7 @@ void program_exception(struct cpu_user_r
     __trap_to_gdb(regs, cookie);
 #else /* CRASH_DEBUG */
     show_registers(regs);
-    printk("dar 0x%lx, dsisr 0x%lx\n", mfdar(), mfdsisr());
+    printk("dar 0x%016lx, dsisr 0x%08x\n", mfdar(), mfdsisr());
     panic("%s: 0x%lx\n", __func__, cookie);
 #endif /* CRASH_DEBUG */
 }



_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [XenPPC] [pushed] [ppc] preint the leading zeros for DAR and DSISR, jimix <=