aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64/ia32
diff options
context:
space:
mode:
authorAndi Kleen <ak@suse.de>2006-09-26 04:52:41 -0400
committerAndi Kleen <andi@basil.nowhere.org>2006-09-26 04:52:41 -0400
commitdd54a11004b2c9a1f136225f880e021a43b0eadc (patch)
tree34940fe0eae0738634440e75052bd6c2bb4ab23b /arch/x86_64/ia32
parent2049336f60d297c85ac977245b9326ec00396114 (diff)
[PATCH] Remove all traces of signal number conversion
This was old code that was needed for iBCS and x86-64 never supported that. Pointed out by Albert Cahalan Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch/x86_64/ia32')
-rw-r--r--arch/x86_64/ia32/ia32_signal.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/arch/x86_64/ia32/ia32_signal.c b/arch/x86_64/ia32/ia32_signal.c
index 549de439fb2d..2d20f8304b31 100644
--- a/arch/x86_64/ia32/ia32_signal.c
+++ b/arch/x86_64/ia32/ia32_signal.c
@@ -431,15 +431,7 @@ int ia32_setup_frame(int sig, struct k_sigaction *ka,
431 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame))) 431 if (!access_ok(VERIFY_WRITE, frame, sizeof(*frame)))
432 goto give_sigsegv; 432 goto give_sigsegv;
433 433
434 { 434 err |= __put_user(sig, &frame->sig);
435 struct exec_domain *ed = current_thread_info()->exec_domain;
436 err |= __put_user((ed
437 && ed->signal_invmap
438 && sig < 32
439 ? ed->signal_invmap[sig]
440 : sig),
441 &frame->sig);
442 }
443 if (err) 435 if (err)
444 goto give_sigsegv; 436 goto give_sigsegv;
445 437