From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752933Ab3LQJsx (ORCPT ); Tue, 17 Dec 2013 04:48:53 -0500 Received: from merlin.infradead.org ([205.233.59.134]:37280 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751608Ab3LQJsv (ORCPT ); Tue, 17 Dec 2013 04:48:51 -0500 Date: Tue, 17 Dec 2013 10:48:40 +0100 From: Peter Zijlstra To: Richard Guy Briggs Cc: Oleg Nesterov , Eric Paris , linux-kernel@vger.kernel.org, linux-audit@redhat.com, Andrew Morton , "Eric W. Biederman" , "Serge E. Hallyn" Subject: Re: [PATCH 11/12] pid: rewrite task helper functions avoiding task->pid and task->tgid Message-ID: <20131217094840.GP3694@twins.programming.kicks-ass.net> References: <20130822190848.GA25053@redhat.com> <20130826220711.GA21098@madcap2.tricolour.ca> <20131216173547.GA21582@madcap2.tricolour.ca> <20131216210558.GA8565@redhat.com> <20131216222051.GA21056@madcap2.tricolour.ca> <20131217093442.GE21999@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131217093442.GE21999@twins.programming.kicks-ass.net> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Dec 17, 2013 at 10:34:42AM +0100, Peter Zijlstra wrote: > On Mon, Dec 16, 2013 at 05:20:51PM -0500, Richard Guy Briggs wrote: > > > static inline bool is_idle_task(const struct task_struct *p) > > { > > - return p->pid == 0; > > + return task_pid(p) == &init_struct_pid; > > } > > > I'll stick with task_pid_nr(p) == 0. > > We're going to probably switch to: > > return p->flags & PF_IDLE; > > Soon, because people are playing silly tricks and want normal threads > to temporarily appear to be the idle thread (idle time injection). See http://marc.info/?l=linux-kernel&m=138548236506953&w=2 for more context.