Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752154AbcCVFBR (ORCPT ); Tue, 22 Mar 2016 01:01:17 -0400 Received: from LGEAMRELO11.lge.com ([156.147.23.51]:43897 "EHLO lgeamrelo11.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751090AbcCVFBQ (ORCPT ); Tue, 22 Mar 2016 01:01:16 -0400 X-Original-SENDERIP: 156.147.1.125 X-Original-MAILFROM: iamjoonsoo.kim@lge.com X-Original-SENDERIP: 10.177.222.138 X-Original-MAILFROM: iamjoonsoo.kim@lge.com Date: Tue, 22 Mar 2016 14:02:44 +0900 From: Joonsoo Kim To: Mel Gorman Cc: Andrew Morton , Rik van Riel , Johannes Weiner , Laura Abbott , Minchan Kim , Marek Szyprowski , Michal Nazarewicz , "Aneesh Kumar K.V" , Vlastimil Babka , linux-mm@kvack.org, linux-kernel@vger.kernel.org, "Rafael J. Wysocki" Subject: Re: [PATCH 1/6] mm/page_alloc: fix same zone check in __pageblock_pfn_to_page() Message-ID: <20160322050244.GA31955@js1304-P5Q-DELUXE> References: <1457940697-2278-1-git-send-email-iamjoonsoo.kim@lge.com> <1457940697-2278-2-git-send-email-iamjoonsoo.kim@lge.com> <20160321113719.GM28876@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160321113719.GM28876@suse.de> 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: 737 Lines: 23 On Mon, Mar 21, 2016 at 11:37:19AM +0000, Mel Gorman wrote: > On Mon, Mar 14, 2016 at 04:31:32PM +0900, js1304@gmail.com wrote: > > From: Joonsoo Kim > > > > There is a system that node's pfn are overlapped like as following. > > > > -----pfn--------> > > N0 N1 N2 N0 N1 N2 > > > > Therefore, we need to care this overlapping when iterating pfn range. > > > > In __pageblock_pfn_to_page(), there is a check for this but it's > > not sufficient. This check cannot distinguish the case that zone id > > is the same but node id is different. This patch fixes it. > > > > I think you may be mixing up page_zone_id with page_zonenum. Oops... Indeed. I will drop the patch. Thanks for catching it. :) Thanks.