From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1763537AbZFORAZ (ORCPT ); Mon, 15 Jun 2009 13:00:25 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761556AbZFORAN (ORCPT ); Mon, 15 Jun 2009 13:00:13 -0400 Received: from mx2.redhat.com ([66.187.237.31]:52052 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759046AbZFORAM (ORCPT ); Mon, 15 Jun 2009 13:00:12 -0400 Date: Mon, 15 Jun 2009 18:55:36 +0200 From: Oleg Nesterov To: Vitaly Mayatskikh Cc: Andrew Morton , Ingo Molnar , Roland McGrath , linux-kernel@vger.kernel.org Subject: Re: [PATCH 5/5] Use copy_wait_opts_to_user() in wait_task_continued() Message-ID: <20090615165536.GC7425@redhat.com> References: <1242048349-2766-1-git-send-email-v.mayatskih@gmail.com> <1242048349-2766-6-git-send-email-v.mayatskih@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1242048349-2766-6-git-send-email-v.mayatskih@gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 05/11, Vitaly Mayatskikh wrote: > > --- a/kernel/exit.c > +++ b/kernel/exit.c > @@ -1416,19 +1416,16 @@ static int wait_task_continued(struct wait_opts *wo, struct task_struct *p) > get_task_struct(p); > read_unlock(&tasklist_lock); > > - if (!wo->wo_info) { > - retval = wo->wo_rusage > - ? getrusage(p, RUSAGE_BOTH, wo->wo_rusage) : 0; > - put_task_struct(p); > - if (!retval && wo->wo_stat) > - retval = put_user(0xffff, wo->wo_stat); > - if (!retval) > - retval = pid; > - } else { > - retval = wait_noreap_copyout(wo, p, pid, uid, > - CLD_CONTINUED, SIGCONT); > - BUG_ON(retval == 0); > - } > + retval = copy_wait_opts_to_user(wo, p, pid, uid, > + CLD_CONTINUED, SIGCONT, SIGCHLD); > + put_task_struct(p); > + > + if (!retval && wo->wo_stat) > + retval = put_user(0xffff, wo->wo_stat); This adds another user-visible change. Before the patch, we ignore ->wo_stat if ->wo_info != NULL. This change looks like the fix to me, but again, this should be documented/discussed. I could send the fixes for 3 and 4, but unfortunately Vitaly has the vacation now. I think it is better to drop wait_task_-cleanups-split-wait_noreap_copyout.patch wait_task_-cleanups-use-copy_wait_opts_to_user-in-wait_task_stopped.patch wait_task_-cleanups-use-copy_wait_opts_to_user-in-do_wait.patch wait_task_-cleanups-use-copy_wait_opts_to_user-in-wait_task_zombie.patch wait_task_-cleanups-use-copy_wait_opts_to_user-in-wait_task_continued.patch patches, and wait for Vitaly to redo/resend. Oleg.