Re: [XenPPC] [PATCH] Fix Xen-GDB Stub (smp_sen_stop, E00 on unknown command, remove printk prefix)

2007-05-02 Thread Hollis Blanchard
On Wed, 2007-04-18 at 09:04 +0200, Christian Ehrhardt wrote: > [XEN][POWERPC] Fix Xen-GDB Stub (smp_sen_stop, E00 on unknown command, > remove printk prefix) > - Remove BUG() from smp_stop_all(), common code changes added a call > to this - changed to unimplemented(). > - remove the printk prefix "

Re: [XenPPC] [PATCH] undef DEBUG in linuxppc time.c to prevent printk flooding

2007-05-02 Thread Hollis Blanchard
On Wed, 2007-05-02 at 10:47 +0200, Christian Ehrhardt wrote: > diff -r 43dcc1cc2dd8 arch/powerpc/platforms/xen/time.c > --- a/arch/powerpc/platforms/xen/time.c Thu Mar 01 14:42:25 2007 -0600 > +++ b/arch/powerpc/platforms/xen/time.c Wed May 02 07:52:26 2007 +0200 > @@ -6,7 +6,7 @@ > #include > #

[XenPPC] [PATCH] undef DEBUG in linuxppc time.c to prevent printk flooding

2007-05-02 Thread Christian Ehrhardt
[LINUX][POWERPC] undef DEBUG in linuxppc time.c to prevent printk flooding. Developers may want to enable this but the default in the code should be undefined to prevent the xenppc user from beeing flooded by those printk messages printed with DBG in time.c. Signed-off-by: Christian Ehrhardt <

[XenPPC] [PATCH] merge U/UL/ULL solutions (code cleanup)

2007-05-02 Thread Christian Ehrhardt
[XEN][POWERPC] merge U/UL/ULL solutions (code cleanup) There are currently two very similar solutions to support notations like "0x1234UL". One is in asm/msr.h (ULL) and the other one in asm/config.h (U & UL). ULL may be needed in a scope out of msr.h so I moved it to config.h and merged it wit