projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
498b8b7
)
signal/sh: Ensure si_signo is initialized in do_divide_error
author
Eric W. Biederman
<ebiederm@xmission.com>
Mon, 24 Jul 2017 22:30:30 +0000
(17:30 -0500)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 17 Feb 2018 12:21:19 +0000
(13:21 +0100)
commit
0e88bb002a9b2ee8cc3cc9478ce2dc126f849696
upstream.
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
Fixes: 0983b31849bb ("sh: Wire up division and address error exceptions on SH-2A.")
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/sh/kernel/traps_32.c
patch
|
blob
|
history
diff --git
a/arch/sh/kernel/traps_32.c
b/arch/sh/kernel/traps_32.c
index ff639342a8bef97fa81b89120deae05740974b28..c5b997757988c097d536cacb000b760941deb29b 100644
(file)
--- a/
arch/sh/kernel/traps_32.c
+++ b/
arch/sh/kernel/traps_32.c
@@
-607,7
+607,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