Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757466AbZKJRpV (ORCPT ); Tue, 10 Nov 2009 12:45:21 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757445AbZKJRpU (ORCPT ); Tue, 10 Nov 2009 12:45:20 -0500 Received: from mx1.redhat.com ([209.132.183.28]:20497 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757355AbZKJRpT (ORCPT ); Tue, 10 Nov 2009 12:45:19 -0500 Date: Tue, 10 Nov 2009 18:40:08 +0100 From: Oleg Nesterov To: Stanislaw Gruszka Cc: Peter Zijlstra , Hidetoshi Seto , Spencer Candland , linux-kernel@vger.kernel.org, Ingo Molnar Subject: Re: utime/stime decreasing on thread exit Message-ID: <20091110174008.GA12909@redhat.com> References: <4AF0C97F.7000603@bluehost.com> <4AF123F5.50407@jp.fujitsu.com> <4AF26176.4080307@jp.fujitsu.com> <1257778154.4108.341.camel@laptop> <20091109172020.GA7751@redhat.com> <1257787903.4108.345.camel@laptop> <20091109192355.GA13724@redhat.com> <20091110104452.GB2391@dhcp-lab-161.englab.brq.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20091110104452.GB2391@dhcp-lab-161.englab.brq.redhat.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 Content-Length: 1526 Lines: 49 On 11/10, Stanislaw Gruszka wrote: > > 10 129 mm/oom_kill.c <> > thread_group_cputime(p, &task_time); > > Not sure about 10 - oom killer. Not sure too, but I don't think we should worry about badness(). > One other exception is: > fastpath_timer_check() -> thread_group_cputimer() -> thread_group_cputime() > > We can solve this like that: > > --- a/kernel/posix-cpu-timers.c > +++ b/kernel/posix-cpu-timers.c > @@ -1375,13 +1375,8 @@ static inline int fastpath_timer_check(struct task_struct *tsk) > } > > sig = tsk->signal; > - if (!task_cputime_zero(&sig->cputime_expires)) { > - struct task_cputime group_sample; > - > - thread_group_cputimer(tsk, &group_sample); > - if (task_cputime_expired(&group_sample, &sig->cputime_expires)) > - return 1; > - } > + if (!task_cputime_zero(&sig->cputime_expires)) > + return 1; > > return sig->rlim[RLIMIT_CPU].rlim_cur != RLIM_INFINITY; > } > > Or stay with task_cputime_expired() but only if cputimer is currently running. Oh. I forgot this code completely, can't comment. Can't we ensure that fastpath_timer_check() never do while_each_thread() ? IOW, if sig->cputime_expires != 0 then ->running must be true. At least, shouldn't stop_process_timers() clear sig->cputime_expires ? Oleg. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/