Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759672AbbLCK4P (ORCPT ); Thu, 3 Dec 2015 05:56:15 -0500 Received: from casper.infradead.org ([85.118.1.10]:54376 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759599AbbLCK4M (ORCPT ); Thu, 3 Dec 2015 05:56:12 -0500 Date: Thu, 3 Dec 2015 11:56:07 +0100 From: Peter Zijlstra To: Waiman Long Cc: Ingo Molnar , linux-kernel@vger.kernel.org, Yuyang Du , Paul Turner , Ben Segall , Morten Rasmussen , Scott J Norton , Douglas Hatch Subject: Re: [PATCH v2 2/3] sched/fair: Move hot load_avg into its own cacheline Message-ID: <20151203105607.GW3816@twins.programming.kicks-ass.net> References: <1449081710-20185-1-git-send-email-Waiman.Long@hpe.com> <1449081710-20185-3-git-send-email-Waiman.Long@hpe.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1449081710-20185-3-git-send-email-Waiman.Long@hpe.com> 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 Content-Length: 1126 Lines: 34 On Wed, Dec 02, 2015 at 01:41:49PM -0500, Waiman Long wrote: > +/* > + * Make sure that the task_group structure is cacheline aligned when > + * fair group scheduling is enabled. > + */ > +#ifdef CONFIG_FAIR_GROUP_SCHED > +static inline struct task_group *alloc_task_group(void) > +{ > + return kmem_cache_alloc(task_group_cache, GFP_KERNEL | __GFP_ZERO); > +} > + > +static inline void free_task_group(struct task_group *tg) > +{ > + kmem_cache_free(task_group_cache, tg); > +} > +#else /* CONFIG_FAIR_GROUP_SCHED */ > +static inline struct task_group *alloc_task_group(void) > +{ > + return kzalloc(sizeof(struct task_group), GFP_KERNEL); > +} > + > +static inline void free_task_group(struct task_group *tg) > +{ > + kfree(tg); > +} > +#endif /* CONFIG_FAIR_GROUP_SCHED */ I think we can simply always use the kmem_cache, both slab and slub merge slabcaches where appropriate. -- 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/