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] [PATCH]fix minor compilation problem in gdb stub

To: xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
Subject: [XenPPC] [PATCH]fix minor compilation problem in gdb stub
From: Maria Butrico <butrico@xxxxxxxxxxxxxx>
Date: Mon, 08 May 2006 19:12:51 -0400
Delivery-date: Mon, 08 May 2006 17:19:17 -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
Signed-off-by: Maria Butrico <butrico@xxxxxxxxxxxxxx>

summary:     fix minor compilation problem in gdb stub.


diff -r 29e803e524c2 xen/arch/ppc/gdbstub.c
--- a/xen/arch/ppc/gdbstub.c    Thu May  4 08:57:37 2006 -0400
+++ b/xen/arch/ppc/gdbstub.c    Mon May  8 19:07:46 2006 -0400
@@ -182,7 +182,7 @@ gdb_arch_print_state(struct cpu_user_reg
     /* XXX
        printk("DAR: 0x%016lx DSISR: 0x%016lx\n", state->dar, state->dsisr);
        */
-    printk("CR: 0x%08x XER: 0x%016x\n", state->cr, state->xer);
+    printk("CR: 0x%08x XER: 0x%016lx\n", state->cr, state->xer);
     for (; i < 32; i+=4) {
         printk("%02d: 0x%016lx 0x%016lx 0x%016lx 0x%016lx\n",
                 i, state->gprs[i], state->gprs[i+1],

_______________________________________________
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] [PATCH]fix minor compilation problem in gdb stub, Maria Butrico <=