diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2017-07-25 01:30:30 +0300 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2018-01-06 03:40:39 +0300 |
commit | 0e88bb002a9b2ee8cc3cc9478ce2dc126f849696 (patch) | |
tree | 83d68ddd257422226bbac7bd3917587fa57f3a60 /arch | |
parent | 0b44bf9a6f5cde099ae21b4aa94553484203769a (diff) | |
download | linux-0e88bb002a9b2ee8cc3cc9478ce2dc126f849696.tar.xz |
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 'arch')
-rw-r--r-- | arch/sh/kernel/traps_32.c | 3 |
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 |