diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2010-09-26 14:29:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-09-27 15:19:53 -0400 |
commit | 8e87354d01b3046aa5e1080419178191f3dce8f0 (patch) | |
tree | f31863458958296dbbf54cf779afe9f5ca3a547a /arch/mn10300 | |
parent | c05628b49b19187841d635dddd3e47caab33242b (diff) |
mn10300: get rid of set_fs(USER_DS) in sigframe setup
It really has no business being there; short of a serious kernel bug
we should already have USER_DS at that point. It shouldn't have been
done on x86 either...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/mn10300')
-rw-r--r-- | arch/mn10300/kernel/signal.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/mn10300/kernel/signal.c b/arch/mn10300/kernel/signal.c index 5a2c0040b166..ae36480b450f 100644 --- a/arch/mn10300/kernel/signal.c +++ b/arch/mn10300/kernel/signal.c | |||
@@ -333,8 +333,6 @@ static int setup_frame(int sig, struct k_sigaction *ka, sigset_t *set, | |||
333 | regs->d0 = sig; | 333 | regs->d0 = sig; |
334 | regs->d1 = (unsigned long) &frame->sc; | 334 | regs->d1 = (unsigned long) &frame->sc; |
335 | 335 | ||
336 | set_fs(USER_DS); | ||
337 | |||
338 | /* the tracer may want to single-step inside the handler */ | 336 | /* the tracer may want to single-step inside the handler */ |
339 | if (test_thread_flag(TIF_SINGLESTEP)) | 337 | if (test_thread_flag(TIF_SINGLESTEP)) |
340 | ptrace_notify(SIGTRAP); | 338 | ptrace_notify(SIGTRAP); |
@@ -416,8 +414,6 @@ static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info, | |||
416 | regs->d0 = sig; | 414 | regs->d0 = sig; |
417 | regs->d1 = (long) &frame->info; | 415 | regs->d1 = (long) &frame->info; |
418 | 416 | ||
419 | set_fs(USER_DS); | ||
420 | |||
421 | /* the tracer may want to single-step inside the handler */ | 417 | /* the tracer may want to single-step inside the handler */ |
422 | if (test_thread_flag(TIF_SINGLESTEP)) | 418 | if (test_thread_flag(TIF_SINGLESTEP)) |
423 | ptrace_notify(SIGTRAP); | 419 | ptrace_notify(SIGTRAP); |