From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757159Ab3JILNd (ORCPT ); Wed, 9 Oct 2013 07:13:33 -0400 Received: from mail-ee0-f45.google.com ([74.125.83.45]:60376 "EHLO mail-ee0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752523Ab3JILNb (ORCPT ); Wed, 9 Oct 2013 07:13:31 -0400 Date: Wed, 9 Oct 2013 13:13:28 +0200 From: Ingo Molnar To: Mel Gorman Cc: Peter Zijlstra , Rik van Riel , Srikar Dronamraju , Andrea Arcangeli , Johannes Weiner , Linux-MM , LKML Subject: Re: [PATCH 0/63] Basic scheduler support for automatic NUMA balancing V9 Message-ID: <20131009111328.GB19610@gmail.com> References: <1381141781-10992-1-git-send-email-mgorman@suse.de> <20131009110353.GA19370@gmail.com> <20131009111146.GA19610@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131009111146.GA19610@gmail.com> 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 * Ingo Molnar wrote: > mmzone.c: > > #if defined(CONFIG_NUMA_BALANCING) && !defined(LAST_CPUPID_IN_PAGE_FLAGS) > > Note the missing 'NOT_' in the latter line. I've changed it to: > > #if defined(CONFIG_NUMA_BALANCING) && defined(LAST_CPUPID_NOT_IN_PAGE_FLAGS) Actually, I think it should be: #if defined(CONFIG_NUMA_BALANCING) && !defined(LAST_CPUPID_NOT_IN_PAGE_FLAGS) I'll fold back this fix to keep it bisectable on 32-bit platforms. Thanks, Ingo