From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pekka Enberg Subject: Re: linux-next: build warning after merge of the final tree (slab tree related) Date: Wed, 19 Sep 2012 09:57:58 +0300 (EEST) Message-ID: References: <20120911161923.10299045655dd4c84f96f4b3@canb.auug.org.au> <00000139b6e13c92-97adf129-be2c-4b74-9559-0a92c10b9eda-000000@email.amazonses.com> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-path: Received: from mail-lpp01m010-f46.google.com ([209.85.215.46]:34151 "EHLO mail-lpp01m010-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752153Ab2ISG6F (ORCPT ); Wed, 19 Sep 2012 02:58:05 -0400 In-Reply-To: <00000139b6e13c92-97adf129-be2c-4b74-9559-0a92c10b9eda-000000@email.amazonses.com> Sender: linux-next-owner@vger.kernel.org List-ID: To: Christoph Lameter Cc: Stephen Rothwell , Pekka Enberg , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org On Tue, 11 Sep 2012, Christoph Lameter wrote: > On Tue, 11 Sep 2012, Stephen Rothwell wrote: > > > After merging the final tree, today's linux-next build (sparc64 defconfig) > > produced this warning: > > > > mm/slab.c:808:13: warning: '__slab_error' defined but not used [-Wunused-function] > > > > Introduced by commit 945cf2b6199b ("mm/sl[aou]b: Extract a common function for kmem_cache_destroy"). All uses of slab_error() are now guarded by DEBUG. > > > Subject: Slab: Only define slab_error for DEBUG > > There is no use case left for slab builds without DEBUG. > > Signed-off-by: Christoph Lameter > > Index: linux/mm/slab.c > =================================================================== > --- linux.orig/mm/slab.c 2012-09-11 14:44:56.304015235 -0500 > +++ linux/mm/slab.c 2012-09-11 14:48:46.988948440 -0500 > @@ -803,6 +803,7 @@ static void cache_estimate(unsigned long > *left_over = slab_size - nr_objs*buffer_size - mgmt_size; > } > > +#if DEBUG > #define slab_error(cachep, msg) __slab_error(__func__, cachep, msg) > > static void __slab_error(const char *function, struct kmem_cache *cachep, > @@ -812,6 +813,7 @@ static void __slab_error(const char *fun > function, cachep->name, msg); > dump_stack(); > } > +#endif > > /* > * By default on NUMA we use alien caches to stage the freeing of > Applied, thanks. P.S. Guys, please use penberg@kernel.org email address. I missed this patch because I don't read this mailbox. Pekka