Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756180AbdLOJve (ORCPT ); Fri, 15 Dec 2017 04:51:34 -0500 Received: from mail-wm0-f43.google.com ([74.125.82.43]:41946 "EHLO mail-wm0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756167AbdLOJv2 (ORCPT ); Fri, 15 Dec 2017 04:51:28 -0500 X-Google-Smtp-Source: ACJfBosLu1TYdEBMA+h6FC/JRtTwAg4Xc/eZENGSVtWAZ4jxk61Rv9/oOrPowmVtbVraPPtfSgt6iw== Date: Fri, 15 Dec 2017 12:51:25 +0300 From: "Kirill A. Shutemov" To: Michal Hocko Cc: linux-mm@kvack.org, Zi Yan , Naoya Horiguchi , Vlastimil Babka , Andrew Morton , Andrea Reale , LKML Subject: Re: [RFC PATCH 1/3] mm, numa: rework do_pages_move Message-ID: <20171215095125.s6zl7qoaabhpzugz@node.shutemov.name> References: <20171207143401.GK20234@dhcp22.suse.cz> <20171208161559.27313-1-mhocko@kernel.org> <20171208161559.27313-2-mhocko@kernel.org> <20171213143948.GM25185@dhcp22.suse.cz> <20171214153558.trgov6dbclav6ui7@node.shutemov.name> <20171215092859.GT16951@dhcp22.suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20171215092859.GT16951@dhcp22.suse.cz> User-Agent: NeoMutt/20171208 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1147 Lines: 40 On Fri, Dec 15, 2017 at 10:28:59AM +0100, Michal Hocko wrote: > On Thu 14-12-17 18:35:58, Kirill A. Shutemov wrote: > > On Wed, Dec 13, 2017 at 03:39:48PM +0100, Michal Hocko wrote: > [...] > > > + err = 0; > > > + if (page_to_nid(page) == node) > > > + goto out_putpage; > > > + > > > + err = -EACCES; > > > + if (page_mapcount(page) > 1 && > > > + !migrate_all) > > > > Non-sensible line break. > > fixed > > > > + goto out_putpage; > > > + > > > + if (PageHuge(page)) { > > > + if (PageHead(page)) { > > > + isolate_huge_page(page, pagelist); > > > + err = 0; > > > + } > > > + } else { > > > > Hm. I think if the page is PageTail() we have to split the huge page. > > If an user asks to migrate part of THP, we shouldn't migrate the whole page, > > otherwise it's not transparent anymore. > > Well, as I've said in the cover letter. There are more things which are > worth considering but I've tried to keep the original semantic so > further changes should be done in separete patches. I will work on those > but I would prefer this to stay smaller if you do not mind. Sure. Fill free to use my ack. -- Kirill A. Shutemov