diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-11-30 11:24:57 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-12-01 06:05:17 -0500 |
commit | 04a7052c8399edc95b5e120c980823ccaade6aaf (patch) | |
tree | 230e75476b3d1fae60bfaf98d4e407d65b0be114 /arch/mips/kernel/scall64-o32.S | |
parent | ecd5a739048b4d94e4ae3545196eb752d6776c97 (diff) |
[MIPS] Fix register handling in syscalls when debugging.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/scall64-o32.S')
-rw-r--r-- | arch/mips/kernel/scall64-o32.S | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/mips/kernel/scall64-o32.S b/arch/mips/kernel/scall64-o32.S index 5a16401e443a..3d338ca7eeeb 100644 --- a/arch/mips/kernel/scall64-o32.S +++ b/arch/mips/kernel/scall64-o32.S | |||
@@ -124,6 +124,8 @@ trace_a_syscall: | |||
124 | li a1, 0 | 124 | li a1, 0 |
125 | jal do_syscall_trace | 125 | jal do_syscall_trace |
126 | 126 | ||
127 | move t0, s0 | ||
128 | RESTORE_STATIC | ||
127 | ld a0, PT_R4(sp) # Restore argument registers | 129 | ld a0, PT_R4(sp) # Restore argument registers |
128 | ld a1, PT_R5(sp) | 130 | ld a1, PT_R5(sp) |
129 | ld a2, PT_R6(sp) | 131 | ld a2, PT_R6(sp) |
@@ -132,7 +134,7 @@ trace_a_syscall: | |||
132 | ld a5, PT_R9(sp) | 134 | ld a5, PT_R9(sp) |
133 | ld a6, PT_R10(sp) | 135 | ld a6, PT_R10(sp) |
134 | ld a7, PT_R11(sp) # For indirect syscalls | 136 | ld a7, PT_R11(sp) # For indirect syscalls |
135 | jalr s0 | 137 | jalr t0 |
136 | 138 | ||
137 | li t0, -EMAXERRNO - 1 # error? | 139 | li t0, -EMAXERRNO - 1 # error? |
138 | sltu t0, t0, v0 | 140 | sltu t0, t0, v0 |