From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail144.messagelabs.com (mail144.messagelabs.com [216.82.254.51]) by kanga.kvack.org (Postfix) with ESMTP id 7CB366B004F for ; Tue, 21 Apr 2009 04:08:16 -0400 (EDT) Subject: Re: [PATCH 25/25] Use a pre-calculated value instead of num_online_nodes() in fast paths From: Pekka Enberg In-Reply-To: <1240266011-11140-26-git-send-email-mel@csn.ul.ie> References: <1240266011-11140-1-git-send-email-mel@csn.ul.ie> <1240266011-11140-26-git-send-email-mel@csn.ul.ie> Date: Tue, 21 Apr 2009 11:08:20 +0300 Message-Id: <1240301300.771.58.camel@penberg-laptop> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org To: Mel Gorman Cc: Linux Memory Management List , KOSAKI Motohiro , Christoph Lameter , Nick Piggin , Linux Kernel Mailing List , Lin Ming , Zhang Yanmin , Peter Zijlstra , Andrew Morton List-ID: On Mon, 2009-04-20 at 23:20 +0100, Mel Gorman wrote: > diff --git a/mm/slab.c b/mm/slab.c > index 1c680e8..41d1343 100644 > --- a/mm/slab.c > +++ b/mm/slab.c > @@ -3579,7 +3579,7 @@ static inline void __cache_free(struct kmem_cache *cachep, void *objp) > * variable to skip the call, which is mostly likely to be present in > * the cache. > */ > - if (numa_platform && cache_free_alien(cachep, objp)) > + if (numa_platform > 1 && cache_free_alien(cachep, objp)) > return; This doesn't look right. I assume you meant "nr_online_nodes > 1" here? If so, please go ahead and remove "numa_platform" completely. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org