From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755521AbdL2Lga (ORCPT ); Fri, 29 Dec 2017 06:36:30 -0500 Received: from mx2.suse.de ([195.135.220.15]:45514 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754600AbdL2Lg2 (ORCPT ); Fri, 29 Dec 2017 06:36:28 -0500 Date: Fri, 29 Dec 2017 12:36:27 +0100 From: Michal Hocko To: Zi Yan Cc: linux-mm@kvack.org, Naoya Horiguchi , "Kirill A. Shutemov" , Vlastimil Babka , Andrew Morton , Andrea Reale , LKML Subject: Re: [RFC PATCH 3/3] mm: unclutter THP migration Message-ID: <20171229113627.GB27077@dhcp22.suse.cz> References: <20171207143401.GK20234@dhcp22.suse.cz> <20171208161559.27313-1-mhocko@kernel.org> <20171208161559.27313-4-mhocko@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.9.2 (2017-12-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue 26-12-17 21:19:35, Zi Yan wrote: > On 8 Dec 2017, at 11:15, Michal Hocko wrote: [...] > > @@ -1394,6 +1390,21 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page, > > > > switch(rc) { > > case -ENOMEM: > > + /* > > + * THP migration might be unsupported or the > > + * allocation could've failed so we should > > + * retry on the same page with the THP split > > + * to base pages. > > + */ > > + if (PageTransHuge(page)) { > > + lock_page(page); > > + rc = split_huge_page_to_list(page, from); > > + unlock_page(page); > > + if (!rc) { > > + list_safe_reset_next(page, page2, lru); > > + goto retry; > > + } > > + } > > The hunk splits the THP and adds all tail pages at the end of the list “from”. > Why do we need “list_safe_reset_next(page, page2, lru);” here, when page2 is not changed here? Because we need to handle the case when the page2 was the last on the list. > And it seems a little bit strange to only re-migrate the head page, then come back to all tail > pages after migrating the rest of pages in the list “from”. Is it better to split the THP into > a list other than “from” and insert the list after “page”, then retry from the split “page”? > Thus, we attempt to migrate all sub pages of the THP after it is split. Why does this matter? -- Michal Hocko SUSE Labs