Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756068Ab2KHOd7 (ORCPT ); Thu, 8 Nov 2012 09:33:59 -0500 Received: from cantor2.suse.de ([195.135.220.15]:57644 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755695Ab2KHOd6 (ORCPT ); Thu, 8 Nov 2012 09:33:58 -0500 Date: Thu, 8 Nov 2012 15:33:54 +0100 From: Michal Hocko To: Andrew Morton Cc: Glauber Costa , linux-mm@kvack.org, linux-kernel@vger.kernel.org, kamezawa.hiroyu@jp.fujitsu.com, Johannes Weiner , Tejun Heo , Christoph Lameter , Pekka Enberg , David Rientjes , Pekka Enberg , Suleiman Souhlal , JoonSoo Kim , Andi Kleen Subject: Re: [PATCH v6 19/29] memcg: infrastructure to match an allocation to the right cache Message-ID: <20121108143354.GJ31821@dhcp22.suse.cz> References: <1351771665-11076-1-git-send-email-glommer@parallels.com> <1351771665-11076-20-git-send-email-glommer@parallels.com> <20121105162837.5fdac20c.akpm@linux-foundation.org> <20121106080354.GA21167@dhcp22.suse.cz> <20121108110513.GE31821@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121108110513.GE31821@dhcp22.suse.cz> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1432 Lines: 33 On Thu 08-11-12 12:05:13, Michal Hocko wrote: > On Tue 06-11-12 09:03:54, Michal Hocko wrote: > > On Mon 05-11-12 16:28:37, Andrew Morton wrote: > > > On Thu, 1 Nov 2012 16:07:35 +0400 > > > Glauber Costa wrote: > > > > > > > +static __always_inline struct kmem_cache * > > > > +memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) > > > > > > I still don't understand why this code uses __always_inline so much. > > > > AFAIU, __always_inline (resp. __attribute__((always_inline))) is the > > same thing as inline if optimizations are enabled > > (http://ohse.de/uwe/articles/gcc-attributes.html#func-always_inline). > > And this doesn't tell the whole story because there is -fearly-inlining > which enabled by default and it makes a difference when optimizations > are enabled so __always_inline really enforces inlining. and -fearly-inlining is another doc trap. I have tried with -O2 -fno-early-inlining and __always_inline code has been inlined with gcc 4.3 and 4.7 while simple inline is ignored so it really seems that __always_inline is always inlined but man page is little a bit mean to tell us all the details. -- Michal Hocko SUSE Labs -- 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/