mn10300: avoid SIGSEGV delivery loop
authorAl Viro <[email protected]>
Sun, 26 Sep 2010 18:28:32 +0000 (19:28 +0100)
committerLinus Torvalds <[email protected]>
Mon, 27 Sep 2010 19:19:53 +0000 (12:19 -0700)
force_sigsegv() is there for purpose...

Signed-off-by: Al Viro <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/mn10300/kernel/signal.c

index 717db14c2cc32d8905a45e6cfae4bf2a00d38abd..57178a8d5af0d475837737420f31aa1a8772b9d5 100644 (file)
@@ -345,7 +345,7 @@ static int setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
        return 0;
 
 give_sigsegv:
-       force_sig(SIGSEGV, current);
+       force_sigsegv(sig, current);
        return -EFAULT;
 }
 
@@ -428,7 +428,7 @@ static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
        return 0;
 
 give_sigsegv:
-       force_sig(SIGSEGV, current);
+       force_sigsegv(sig, current);
        return -EFAULT;
 }