From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761377AbZBYLlW (ORCPT ); Wed, 25 Feb 2009 06:41:22 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752311AbZBYLlO (ORCPT ); Wed, 25 Feb 2009 06:41:14 -0500 Received: from e37.co.us.ibm.com ([32.97.110.158]:53986 "EHLO e37.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751403AbZBYLlN (ORCPT ); Wed, 25 Feb 2009 06:41:13 -0500 Date: Wed, 25 Feb 2009 17:11:43 +0530 From: Bharata B Rao To: Peter Zijlstra Cc: linux-kernel@vger.kernel.org, Balaji Rao , Dhaval Giani , Balbir Singh , Li Zefan , Paul Menage , Andrew Morton , Ingo Molnar Subject: Re: [RFC PATCH 2/2] Add per-cgroup CPU controller statistics Message-ID: <20090225114143.GE4008@in.ibm.com> Reply-To: bharata@linux.vnet.ibm.com References: <20090225105730.GA4008@in.ibm.com> <20090225105920.GC4008@in.ibm.com> <1235559850.4645.3210.camel@laptop> <20090225112003.GD4008@in.ibm.com> <1235561098.4645.3237.camel@laptop> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1235561098.4645.3237.camel@laptop> 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 Wed, Feb 25, 2009 at 12:24:58PM +0100, Peter Zijlstra wrote: > On Wed, 2009-02-25 at 16:50 +0530, Bharata B Rao wrote: > > On Wed, Feb 25, 2009 at 12:04:10PM +0100, Peter Zijlstra wrote: > > > On Wed, 2009-02-25 at 16:29 +0530, Bharata B Rao wrote: > > > > > > > > +#ifdef CONFIG_CGROUP_SCHED > > > > +static void account_task_group_time(struct task_struct *p, > > > > + enum cpu_cgroup_stat_index idx, int val) > > > > +{ > > > > + struct task_group *tg = task_group(p); > > > > + > > > > + if (likely(tg->stat)) > > > > + percpu_counter_add(&tg->stat->cpustat[idx], val); > > > > +} > > > > +#else > > > > +#define account_task_group_time(x, y, z) { 0; } > > > > > > inline please, so we get argument validation. > > > > Actually wanted to inline, but one of the arguments (cpu_cgroup_stat_index) > > is defined only CONFIG_CGROUP_SCHED. Hence didn't want argument > > validation here. > > Just pull the enum outside of the ifdef? Ok will do it in the next iteration if that's acceptable and argument validation is important. Regards, Bharata.