diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-02-15 06:40:37 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-18 16:31:35 -0500 |
commit | 151fd6acd94e12ef3a7d5fa0911a2590690c493f (patch) | |
tree | 33623a4cf6c6ce7c134f3cc5624dbcac26817238 /arch/mips/kernel/signal_n32.c | |
parent | 38201fb23cd554f942702cd938c3215a76296c87 (diff) |
[MIPS] signals: Share even more code.
native and compat do_signal and handle_signal are identical and can easily
be unified.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/signal_n32.c')
-rw-r--r-- | arch/mips/kernel/signal_n32.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/mips/kernel/signal_n32.c b/arch/mips/kernel/signal_n32.c index 7ca2a078841f..ecf1f7ecaad9 100644 --- a/arch/mips/kernel/signal_n32.c +++ b/arch/mips/kernel/signal_n32.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/compat.h> | 29 | #include <linux/compat.h> |
30 | #include <linux/bitops.h> | 30 | #include <linux/bitops.h> |
31 | 31 | ||
32 | #include <asm/abi.h> | ||
32 | #include <asm/asm.h> | 33 | #include <asm/asm.h> |
33 | #include <asm/cacheflush.h> | 34 | #include <asm/cacheflush.h> |
34 | #include <asm/compat-signal.h> | 35 | #include <asm/compat-signal.h> |
@@ -169,7 +170,7 @@ badframe: | |||
169 | force_sig(SIGSEGV, current); | 170 | force_sig(SIGSEGV, current); |
170 | } | 171 | } |
171 | 172 | ||
172 | int setup_rt_frame_n32(struct k_sigaction * ka, | 173 | static int setup_rt_frame_n32(struct k_sigaction * ka, |
173 | struct pt_regs *regs, int signr, sigset_t *set, siginfo_t *info) | 174 | struct pt_regs *regs, int signr, sigset_t *set, siginfo_t *info) |
174 | { | 175 | { |
175 | struct rt_sigframe_n32 __user *frame; | 176 | struct rt_sigframe_n32 __user *frame; |
@@ -228,3 +229,8 @@ give_sigsegv: | |||
228 | force_sigsegv(signr, current); | 229 | force_sigsegv(signr, current); |
229 | return -EFAULT; | 230 | return -EFAULT; |
230 | } | 231 | } |
232 | |||
233 | struct mips_abi mips_abi_n32 = { | ||
234 | .setup_rt_frame = setup_rt_frame_n32, | ||
235 | .restart = __NR_N32_restart_syscall | ||
236 | }; | ||