[PATCH] arm26: fixup get_signal_to_deliver call

From: Alexey Dobriyan
Date: Wed Jan 18 2006 - 15:40:29 EST


Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>
---

arch/arm26/kernel/signal.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)

--- a/arch/arm26/kernel/signal.c
+++ b/arch/arm26/kernel/signal.c
@@ -480,6 +480,7 @@ static int do_signal(sigset_t *oldset, s
{
siginfo_t info;
int signr;
+ struct k_sigaction ka;

/*
* We want the common case to go fast, which
@@ -493,7 +494,7 @@ static int do_signal(sigset_t *oldset, s
if (current->ptrace & PT_SINGLESTEP)
ptrace_cancel_bpt(current);

- signr = get_signal_to_deliver(&info, regs, NULL);
+ signr = get_signal_to_deliver(&info, &ka, regs, NULL);
if (signr > 0) {
handle_signal(signr, &info, oldset, regs, syscall);
if (current->ptrace & PT_SINGLESTEP)

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/