summaryrefslogtreecommitdiffstats
path: root/kernel/signal.c
diff options
context:
space:
mode:
authorDenys Vlasenko2012-10-05 02:15:29 +0200
committerLinus Torvalds2012-10-05 20:05:16 +0200
commit5ab1c309b344880d81494e9eab7fb27682bc6d9d (patch)
tree9509df6703c921d268db3b4b52c29992bcc24e35 /kernel/signal.c
parentcoredump: use SUID_DUMPABLE_ENABLED rather than hardcoded 1 (diff)
downloadkernel-qcow2-linux-5ab1c309b344880d81494e9eab7fb27682bc6d9d.tar.gz
kernel-qcow2-linux-5ab1c309b344880d81494e9eab7fb27682bc6d9d.tar.xz
kernel-qcow2-linux-5ab1c309b344880d81494e9eab7fb27682bc6d9d.zip
coredump: pass siginfo_t* to do_coredump() and below, not merely signr
This is a preparatory patch for the introduction of NT_SIGINFO elf note. With this patch we pass "siginfo_t *siginfo" instead of "int signr" to do_coredump() and put it into coredump_params. It will be used by the next patch. Most changes are simple s/signr/siginfo->si_signo/. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Reviewed-by: Oleg Nesterov <oleg@redhat.com> Cc: Amerigo Wang <amwang@redhat.com> Cc: "Jonathan M. Foote" <jmfoote@cert.org> Cc: Roland McGrath <roland@hack.frob.com> Cc: Pedro Alves <palves@redhat.com> Cc: Fengguang Wu <fengguang.wu@intel.com> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/signal.c')
-rw-r--r--kernel/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/signal.c b/kernel/signal.c
index 2ad3f5904bd7..0af8868525d6 100644
--- a/kernel/signal.c
+++ b/kernel/signal.c
@@ -2360,7 +2360,7 @@ relock:
* first and our do_group_exit call below will use
* that value and ignore the one we pass it.
*/
- do_coredump(info->si_signo, info->si_signo, regs);
+ do_coredump(info, regs);
}
/*