|
|
|
|
|
|
|
|
|
|
xen-ppc-devel
[PATCH] Re: [XenPPC] XenPPC: redundancy definition of __trap_to_gdb with
On Tue, Oct 03, 2006 at 02:56:14PM -0400, Amos Waterland wrote:
> I'm not positive of this, but I'm pretty sure that this is caused by
> improper dependency checking. I suspect that you changed from
> debug=n to debug=y and got this. I'd suggest doing a `make clean' and
> trying again without your patch.
I came accross the same probelm with a clean build. The patch below fixes it
for me.
Reorder includes to help the complier and avoid redundat definition of
__trap_to_gdb.
Signed-off-by: Tony Breeds <tony@xxxxxxxxxxxxxxxxxx>
---
xen/arch/powerpc/gdbstub.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff -r d1374d869111 xen/arch/powerpc/gdbstub.c
--- a/xen/arch/powerpc/gdbstub.c Wed Oct 04 13:44:07 2006 +1000
+++ b/xen/arch/powerpc/gdbstub.c Wed Oct 04 14:46:07 2006 +1000
@@ -20,12 +20,12 @@
#include <xen/types.h>
#include <xen/lib.h>
-#include <xen/gdbstub.h>
#include <public/xen.h>
#include <asm/msr.h>
#include <asm/bitops.h>
#include <asm/cache.h>
#include <asm/debugger.h>
+#include <xen/gdbstub.h>
#include <asm/processor.h>
asm(".globl trap_instruction\n"
Yours Tony
linux.conf.au http://linux.conf.au/ || http://lca2007.linux.org.au/
Jan 15-20 2007 The Australian Linux Technical Conference!
_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel
|
|
|
|
|