From: Christoph Lameter Date: Tue, 1 Apr 2008 19:07:41 +0000 (-0700) Subject: Fix undefined count_partial if !CONFIG_SLABINFO X-Git-Tag: v2.6.25-rc8~1 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=00460dd5f4b886f72699f2245206c935f9fd4b82;p=linux-2.6-omap-h63xx.git Fix undefined count_partial if !CONFIG_SLABINFO Small typo in the patch recently merged to avoid the unused symbol message for count_partial(). Discussion thread with confirmation of fix at http://marc.info/?t=120696854400001&r=1&w=2 Typo in the check if we need the count_partial function that was introduced by 53625b4204753b904addd40ca96d9ba802e6977d Signed-off-by: Christoph Lameter Signed-off-by: Linus Torvalds --- diff --git a/mm/slub.c b/mm/slub.c index 84ed734b96b..acc975fcc8c 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -2688,7 +2688,7 @@ void kfree(const void *x) } EXPORT_SYMBOL(kfree); -#if defined(SLUB_DEBUG) || defined(CONFIG_SLABINFO) +#if defined(CONFIG_SLUB_DEBUG) || defined(CONFIG_SLABINFO) static unsigned long count_partial(struct kmem_cache_node *n) { unsigned long flags;