Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id AEA33C64EC7 for ; Wed, 1 Mar 2023 07:12:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229759AbjCAHMH (ORCPT ); Wed, 1 Mar 2023 02:12:07 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52672 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229493AbjCAHME (ORCPT ); Wed, 1 Mar 2023 02:12:04 -0500 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0208038EAE for ; Tue, 28 Feb 2023 23:12:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1677654722; x=1709190722; h=from:to:cc:subject:references:date:in-reply-to: message-id:mime-version; bh=uGeUM/GH3u6jAhtt7FlQqyfKk3rCPGo6FeqqaXZsj60=; b=N2774XpngqlDicVncT+wHb2KiHn5esIeMgTJ8ci4HxgAVwhiSP8LmOYJ mWgE+x9UlFAzF4mUkJreSMYGl3XTCiz45GsuKtX7pLwBYd6kyJDpEP7Tc AZeM4CNECufV3SR3LYovIBMTw/IFRUkSOH0V8UGzy1ZEut2qAuhiUiQ8y EbAQcztKAtJXPBIoAqXajUyYKZZ6UnCPBjSJWK+57ntQV2iXzxN1aH4WZ 1wAtSo29d6M90JCkIy1GqSrn5ep17QlBR8kubO8eQucBcwi2mrTi03vgs jv7pVHGKFdfiCV3rGK0fAuj4iHYe5JGya8BXDq22qhjojcLSauz/CBA/M Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10635"; a="361917245" X-IronPort-AV: E=Sophos;i="5.98,224,1673942400"; d="scan'208";a="361917245" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Feb 2023 23:12:02 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10635"; a="706862429" X-IronPort-AV: E=Sophos;i="5.98,224,1673942400"; d="scan'208";a="706862429" Received: from yhuang6-desk2.sh.intel.com (HELO yhuang6-desk2.ccr.corp.intel.com) ([10.238.208.55]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Feb 2023 23:11:58 -0800 From: "Huang, Ying" To: Hugh Dickins Cc: Andrew Morton , linux-mm@kvack.org, linux-kernel@vger.kernel.org, "Xu, Pengfei" , Christoph Hellwig , Stefan Roesch , Tejun Heo , Xin Hao , Zi Yan , Yang Shi , Baolin Wang , Matthew Wilcox , Mike Kravetz Subject: Re: [PATCH 3/3] migrate_pages: try migrate in batch asynchronously firstly References: <20230224141145.96814-1-ying.huang@intel.com> <20230224141145.96814-4-ying.huang@intel.com> <87cz5ub5dr.fsf@yhuang6-desk2.ccr.corp.intel.com> <070f71-9af-c29a-30b9-758b5cdf6766@google.com> <874jr5atqf.fsf@yhuang6-desk2.ccr.corp.intel.com> Date: Wed, 01 Mar 2023 15:10:53 +0800 In-Reply-To: (Hugh Dickins's message of "Tue, 28 Feb 2023 22:46:47 -0800 (PST)") Message-ID: <87356p9caq.fsf@yhuang6-desk2.ccr.corp.intel.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=ascii Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hugh Dickins writes: > On Wed, 1 Mar 2023, Huang, Ying wrote: >> Hugh Dickins writes: >> > On Tue, 28 Feb 2023, Huang, Ying wrote: >> >> Hugh Dickins writes: >> >> > On Fri, 24 Feb 2023, Huang Ying wrote: >> >> >> >> >> >> diff --git a/mm/migrate.c b/mm/migrate.c >> >> >> index 91198b487e49..c17ce5ee8d92 100644 >> >> >> --- a/mm/migrate.c >> >> >> +++ b/mm/migrate.c >> >> >> @@ -1843,6 +1843,51 @@ static int migrate_pages_batch(struct list_head *from, new_page_t get_new_page, >> >> >> return rc; >> >> >> } >> >> >> >> >> >> +static int migrate_pages_sync(struct list_head *from, new_page_t get_new_page, >> >> >> + free_page_t put_new_page, unsigned long private, >> >> >> + enum migrate_mode mode, int reason, struct list_head *ret_folios, >> >> >> + struct list_head *split_folios, struct migrate_pages_stats *stats) >> >> >> +{ >> >> >> + int rc, nr_failed = 0; >> >> >> + LIST_HEAD(folios); >> >> >> + struct migrate_pages_stats astats; >> >> >> + >> >> >> + memset(&astats, 0, sizeof(astats)); >> >> >> + /* Try to migrate in batch with MIGRATE_ASYNC mode firstly */ >> >> >> + rc = migrate_pages_batch(from, get_new_page, put_new_page, private, MIGRATE_ASYNC, >> >> >> + reason, &folios, split_folios, &astats, >> >> >> + NR_MAX_MIGRATE_PAGES_RETRY); >> >> > >> >> > I wonder if that and below would better be NR_MAX_MIGRATE_PAGES_RETRY / 2. >> >> > >> >> > Though I've never got down to adjusting that number (and it's not a job >> >> > to be done in this set of patches), those 10 retries sometimes terrify >> >> > me, from a latency point of view. They can have such different weights: >> >> > in the unmapped case, 10 retries is okay; but when a pinned page is mapped >> >> > into 1000 processes, the thought of all that unmapping and TLB flushing >> >> > and remapping is terrifying. >> >> > >> >> > Since you're retrying below, halve both numbers of retries for now? >> >> >> >> Yes. These are reasonable concerns. >> >> >> >> And in the original implementation, we only wait to lock page and wait >> >> the writeback to complete if pass > 2. This is kind of trying to >> >> migrate asynchronously for 3 times before the real synchronous >> >> migration. So, should we delete the "force" logic (in >> >> migrate_folio_unmap()), and try to migrate asynchronously for 3 times in >> >> batch before migrating synchronously for 7 times one by one? >> > >> > Oh, that's a good idea (but please don't imagine I've thought it through): >> > I hadn't realized the way in which your migrate_pages_sync() addition is >> > kind of duplicating the way that the "force" argument conditions behaviour, >> > It would be very appealing to delete the "force" argument now if you can. >> >> Sure. Will do that in the next version. >> >> > But aside from that, you've also made me wonder (again, please remember I >> > don't have a good picture of the new migrate_pages() sequence in my head) >> > whether you have already made a *great* strike against my 10 retries >> > terror. Am I reading it right, that the unmapping is now done on the >> > first try, and the remove_migration_ptes after the last try (all the >> > pages involved having remained locked throughout)? >> >> Yes. You are right. Now, unmapping and moving are two separate steps, >> and they are retried separately. After a folio has been unmapped >> successfully, we will not remap/unmap it 10 times if the folio is pinned >> so that failed to move (migrate_folio_move()). So the latency caused by >> retrying is much better now. But I still tend to keep the total retry >> number as before. Do you agree? > > Yes, I agree, keep the total retry number 10 as before: maybe someone in > future will show that more than 5 is a waste of time, but there's little > need to get into that now: if you've put an end to that 10 times unmapping > and remapping, that's a great step forward, quite apart from the TLB flush > batching itself. > > (I did change "no need" to "little need" above: I do have some some > anxiety about the increased latencies from keeping folios locked and > migration entries in place for significantly longer than before your > batching: I won't be surprised if the maximum batch size has to be > lowered, if reports of latency spikes come in; and that might extend > to the retry count too.) Yes. Latency are always concerns for batching. We may revisit this when needed. Something good now is that we will never wait the lock or bit in batched mode. Latency tolerance depends on caller too, for example, when we migrate some cold pages from DRAM to CXL MEM, we can tolerate relatively long latency. If so, we can add a parameter to migrate_pages() to restrict the batch number and retry number when necessary too. Best Regards, Huang, Ying