| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH] fix kgdb exception handler from user mode |
| From: | Atsushi Nemoto <anemo@mba.ocn.ne.jp> |
| Date: | Tue, 09 May 2006 20:23:49 +0900 (JST) |
| Cc: | ralf@linux-mips.org |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
Fix a calculation of saved vector address in trap_low (damage done by
f4c72cc737561aab0d9c7f877abbc0a853f1c465)
diff --git a/arch/mips/kernel/gdb-low.S b/arch/mips/kernel/gdb-low.S
index 10f28fb..5fd7a8a 100644
--- a/arch/mips/kernel/gdb-low.S
+++ b/arch/mips/kernel/gdb-low.S
@@ -54,9 +54,11 @@ #endif
*/
mfc0 k0, CP0_CAUSE
andi k0, k0, 0x7c
- add k1, k1, k0
- PTR_L k0, saved_vectors(k1)
- jr k0
+#ifdef CONFIG_64BIT
+ dsll k0, k0, 1
+#endif
+ PTR_L k1, saved_vectors(k0)
+ jr k1
nop
1:
move k0, sp
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: zilog oops with bad scsi, Damian Dimmich |
|---|---|
| Next by Date: | Re: [PATCH 1/2] Wind River 4KC PPMC Eval Board Support, Ralf Baechle |
| Previous by Thread: | Boot time memory allocation, Alex Gonzalez |
| Next by Thread: | Re: [PATCH] fix kgdb exception handler from user mode, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |