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

To: xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
Subject: [XenPPC] [pushed] [ppc] fix minor compilation problem in gdb stub.
From: Jimi Xenidis <jimix@xxxxxxxxxxxxxx>
Date: Tue, 09 May 2006 07:00:24 -0400
Delivery-date: Tue, 09 May 2006 05:06:47 -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:   9964:4b16bac643914dc0e04e8068af28aec4ec97fea4
tag:         tip
user:        jimix@xxxxxxxxxxxxxxxxxxxxx
date:        Tue May  9 06:59:56 2006 -0400
files:       xen/arch/ppc/gdbstub.c
description:
[ppc] fix minor compilation problem in gdb stub.

Signed-off-by: Maria Butrico <butrico@xxxxxxxxxxxxxx>


diff -r 29e803e524c2d47b8fca1ea9095f4295e1ce2ccb -r 
4b16bac643914dc0e04e8068af28aec4ec97fea4 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    Tue May  9 06:59:56 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] [pushed] [ppc] fix minor compilation problem in gdb stub., Jimi Xenidis <=