On 09/13, Denys Vlasenko wrote: > > This is a preparatory patch for the introduction of NT_SIGINFO elf note.
I think the changelog should explain what the patch does. With this patch we pass "siginfo_t *info" instead of "int signr" to do_coredump() and put it into coredump_params, this "info" will be used by the next patch. Other changes are simple s/signr/info->si_signo/. > @@ -524,7 +524,7 @@ void do_coredump(long signr, int exit_code, struct > pt_regs *regs) > */ > clear_thread_flag(TIF_SIGPENDING); > > - ispipe = format_corename(&cn, signr); > + ispipe = format_corename(&cn, info->si_signo); Well, this conflicts with another fix which we discussed privately, perhaps it would be better to push that simple change first... But OK, this conflict is trivial. Reviewed-by: Oleg Nesterov <o...@redhat.com> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/