aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2017-07-24 17:30:30 -0500
committerEric W. Biederman <ebiederm@xmission.com>2018-01-05 18:40:39 -0600
commit0e88bb002a9b2ee8cc3cc9478ce2dc126f849696 (patch)
tree83d68ddd257422226bbac7bd3917587fa57f3a60 /arch/sh
parentsignal: Simplify and fix kdb_send_sig (diff)
downloadlinux-dev-0e88bb002a9b2ee8cc3cc9478ce2dc126f849696.tar.xz
linux-dev-0e88bb002a9b2ee8cc3cc9478ce2dc126f849696.zip
signal/sh: Ensure si_signo is initialized in do_divide_error
Set si_signo. Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Rich Felker <dalias@libc.org> Cc: Paul Mundt <lethal@linux-sh.org> Cc: linux-sh@vger.kernel.org Cc: stable@vger.kernel.org Fixes: 0983b31849bb ("sh: Wire up division and address error exceptions on SH-2A.") Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to '')
-rw-r--r--arch/sh/kernel/traps_32.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/sh/kernel/traps_32.c b/arch/sh/kernel/traps_32.c
index 57cff00cad17..b3770bb26211 100644
--- a/arch/sh/kernel/traps_32.c
+++ b/arch/sh/kernel/traps_32.c
@@ -609,7 +609,8 @@ asmlinkage void do_divide_error(unsigned long r4)
break;
}
- force_sig_info(SIGFPE, &info, current);
+ info.si_signo = SIGFPE;
+ force_sig_info(info.si_signo, &info, current);
}
#endif