linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] mm: migrate: Fix return value if all subpages of THPs are migrated successfully
@ 2022-10-21 10:16 Baolin Wang
  2022-10-21 10:16 ` [PATCH v2 2/2] mm: migrate: Try again if THP split is failed due to page refcnt Baolin Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Baolin Wang @ 2022-10-21 10:16 UTC (permalink / raw)
  To: akpm
  Cc: david, ying.huang, ziy, shy828301, apopple, baolin.wang,
	jingshan, linux-mm, linux-kernel

When THP migration, if THPs are split and all subpages are migrated successfully
, the migrate_pages() will still return the number of THP that were not migrated.
That will confuse the callers of migrate_pages(), for example, which will make
the longterm pinning failed though all pages are migrated successfully.

Thus we should return 0 to indicate all pages are migrated in this case.

Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com>
---
Changes from v1:
- Fix the return value of migrate_pages() instead of fixing the
  callers' validation.
---
 mm/migrate.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/mm/migrate.c b/mm/migrate.c
index 8e5eb6e..1da0dbc 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -1582,6 +1582,13 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page,
 	 */
 	list_splice(&ret_pages, from);
 
+	/*
+	 * Return 0 in case all subpages of fail-to-migrate THPs are
+	 * migrated successfully.
+	 */
+	if (nr_thp_split && list_empty(from))
+		rc = 0;
+
 	count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
 	count_vm_events(PGMIGRATE_FAIL, nr_failed_pages);
 	count_vm_events(THP_MIGRATION_SUCCESS, nr_thp_succeeded);
-- 
1.8.3.1



^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2022-10-24  8:07 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-21 10:16 [PATCH v2 1/2] mm: migrate: Fix return value if all subpages of THPs are migrated successfully Baolin Wang
2022-10-21 10:16 ` [PATCH v2 2/2] mm: migrate: Try again if THP split is failed due to page refcnt Baolin Wang
2022-10-24  1:41   ` Huang, Ying
2022-10-21 18:41 ` [PATCH v2 1/2] mm: migrate: Fix return value if all subpages of THPs are migrated successfully Andrew Morton
2022-10-21 20:55   ` Yang Shi
2022-10-24  1:56     ` Huang, Ying
2022-10-24  6:03       ` Baolin Wang
2022-10-24  2:36 ` Alistair Popple
2022-10-24  6:41   ` Baolin Wang
2022-10-24  7:24     ` Alistair Popple
2022-10-24  8:01       ` Baolin Wang
2022-10-24  8:06         ` Alistair Popple

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox