From mboxrd@z Thu Jan 1 00:00:00 1970 From: Oleg Nesterov Subject: Re: [PATCH] exec: log when wait_for_dump_helpers aborts due to a signal Date: Wed, 26 Oct 2011 18:54:00 +0200 Message-ID: <20111026165400.GB18076@redhat.com> References: <1319591228-20397-1-git-send-email-msb@chromium.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-kernel@vger.kernel.org, Alexander Viro , Neil Horman , Earl Chew , Andi Kleen , Alan Cox , Andrew Morton , linux-fsdevel@vger.kernel.org To: Mandeep Singh Baines Return-path: Content-Disposition: inline In-Reply-To: <1319591228-20397-1-git-send-email-msb@chromium.org> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On 10/25, Mandeep Singh Baines wrote: > > To allow coredump pipe readers to look at /proc/ of the crashing > process, the kernel waits for the reader to exit. However, the wait > is silently aborted if the crashing process is signalled. Well, yes... But note that this signal_pending() is only used because with TIF_SIGPENDING we have the problems anyway. Oh. I promise myself I'll make do_coredump() killable and cleanup this all every time I look at this code... > This patch, logs whenever wait_for_dump_helpers is aborted or in order > to assist in debugging cases where /proc/ is gone. I don't really understand why this is useful. The reader process can complain if it can't collect the data (say, /proc/pid goes away or EOF doesn't come). As for the patch itself, > - while ((pipe->readers > 1) && (!signal_pending(current))) { > + while (pipe->readers > 1) { > + if (signal_pending(current)) { > + pr_info("wait_for_dump_helpers[%d]: " > + "aborted due to signal\n", > + task_pid_nr(current)); > + break; > + } > + > wake_up_interruptible_sync(&pipe->wait); This can't help in general. If signal_pending() == T, it is quite possible that pipe_write() already failed before. Oleg.