Commit 5d71c55b authored by Al Viro's avatar Al Viro
Browse files

blackfin: don't open-code force_sigsegv()



... especially since we don't have the right k_sigaction here,
so resetting sa_handler won't work.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent fe49c1ce
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -210,9 +210,7 @@ setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t * info,
	return 0;

 give_sigsegv:
	if (sig == SIGSEGV)
		ka->sa.sa_handler = SIG_DFL;
	force_sig(SIGSEGV, current);
	force_sigsegv(sig, current);
	return -EFAULT;
}