Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp262829pxb; Wed, 3 Nov 2021 03:55:28 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwKnMVaH30PEgFKso0gU8jVCsVD6rjt0o8BdemaaDXOv6QYan5kYp60AG6JEWcT+WcYM285 X-Received: by 2002:a17:906:15d0:: with SMTP id l16mr54168415ejd.462.1635936928058; Wed, 03 Nov 2021 03:55:28 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1635936928; cv=none; d=google.com; s=arc-20160816; b=JFeAc+6na0sg7HuFOA63hzA40CATTTTi3MGhbALThKVLWFcVu5L54YKKTADUhxcS/g LWRAokk7iI+pCWJsKzSgxnI3HdleeSF5JSWASVDwT4nRhOvg5xPTcIxJvXqAORgAGJsA otKCAleXF/kv6vg9FlcyZaB9iLW3ZicyQg+mMrwxoaocsGrLbJiU505vd2p9tdIN8nHn qBewUrIoT0KHhGxT/C5JS++n2eZbGVza64PMTmXPV55AaLd83icx/iR8jzA/I8scP4HL AUWEvTn1GcNKKInrLQmcrBq0n7RUISq0UKfXv28iOIYZDLpUCVrGuKnHsVTfk6ZoGtOC /e4w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:references:in-reply-to:references:in-reply-to :message-id:date:subject:cc:to:from; bh=B7eOeSNw4Rp1PL2dXAD/qBLQHTvg6f9L2SNyBwEvc2Y=; b=r2QE1EDFNfRxWsqsw9TiApALqImuwBxFFc/mmzYoa0qLhiFZ2WAdJi1xSVzeafVC+m zaW+NzkqiRhMYxr1WIiYkvdxJ4Y/Z7veLyeoT3oXm9YOg1hy2QrYGihgJVV/250Shu04 37X9UDzgZlf0/R1WGog4n7s/i1ILVlvBqSAcgEzfJOOVSkTaOHkmEYOaBCcDeSuq2LdP ymqVgSgwiRTjWqQvBk1k7PJ/RmcZ4+xVeCBRCcnBZRESX4YBtLE7Rk+BpXW7scbL3ZeO D9gFVGfXw3XAkE8X8OE7roAMBSSHyw0aYzhRRNHQSN2ucmtj6DIUpL4yhhJQtf1n28I3 UgRw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id hv11si3117711ejc.290.2021.11.03.03.55.04; Wed, 03 Nov 2021 03:55:28 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=alibaba.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231775AbhKCKyT (ORCPT + 99 others); Wed, 3 Nov 2021 06:54:19 -0400 Received: from out4436.biz.mail.alibaba.com ([47.88.44.36]:22931 "EHLO out4436.biz.mail.alibaba.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231922AbhKCKyQ (ORCPT ); Wed, 3 Nov 2021 06:54:16 -0400 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R441e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01e04423;MF=baolin.wang@linux.alibaba.com;NM=1;PH=DS;RN=8;SR=0;TI=SMTPD_---0UutTv9L_1635936687; Received: from localhost(mailfrom:baolin.wang@linux.alibaba.com fp:SMTPD_---0UutTv9L_1635936687) by smtp.aliyun-inc.com(127.0.0.1); Wed, 03 Nov 2021 18:51:28 +0800 From: Baolin Wang To: akpm@linux-foundation.org, rostedt@goodmis.org, mingo@redhat.com Cc: ziy@nvidia.com, shy828301@gmail.com, baolin.wang@linux.alibaba.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: [RFC PATCH 2/3] mm: migrate: Correct the hugetlb migration stats Date: Wed, 3 Nov 2021 18:51:15 +0800 Message-Id: X-Mailer: git-send-email 1.8.3.1 In-Reply-To: References: In-Reply-To: References: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Correct the migration stats for hugetlb with using compound_nr() instead of thp_nr_pages(), meanwhile change 'nr_failed_pages' to record the number of normal pages failed to migrate, including THP and hugetlb, and 'nr_succeeded' will record the number of normal pages migrated successfully. Signed-off-by: Baolin Wang --- mm/migrate.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/mm/migrate.c b/mm/migrate.c index 00b8922..00e231c 100644 --- a/mm/migrate.c +++ b/mm/migrate.c @@ -1436,7 +1436,8 @@ static inline int try_split_thp(struct page *page, struct page **page2, * It is caller's responsibility to call putback_movable_pages() to return pages * to the LRU or free list only if ret != 0. * - * Returns the number of {normal page, THP} that were not migrated, or an error code. + * Returns the number of {normal page, THP, hugetlb} that were not migrated, + * or an error code. */ int migrate_pages(struct list_head *from, new_page_t get_new_page, free_page_t put_new_page, unsigned long private, @@ -1476,7 +1477,7 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page, * during migration. */ is_thp = PageTransHuge(page) && !PageHuge(page); - nr_subpages = thp_nr_pages(page); + nr_subpages = compound_nr(page); cond_resched(); if (PageHuge(page)) @@ -1523,6 +1524,7 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page, } /* Hugetlb migration is unsupported */ + nr_failed_pages++; nr_failed++; break; case -ENOMEM: @@ -1541,6 +1543,7 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page, nr_failed_pages += nr_subpages; goto out; } + nr_failed_pages += nr_subpages; nr_failed++; goto out; case -EAGAIN: @@ -1551,12 +1554,11 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page, retry++; break; case MIGRATEPAGE_SUCCESS: + nr_succeeded += nr_subpages; if (is_thp) { nr_thp_succeeded++; - nr_succeeded += nr_subpages; break; } - nr_succeeded++; break; default: /* @@ -1565,9 +1567,9 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page, * removed from migration page list and not * retried in the next outer loop. */ + nr_failed_pages += nr_subpages; if (is_thp) { nr_thp_failed++; - nr_failed_pages += nr_subpages; break; } nr_failed++; @@ -1576,7 +1578,6 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page, } } nr_failed += retry + thp_retry; - nr_failed_pages += nr_failed; nr_thp_failed += thp_retry; rc = nr_failed + nr_thp_failed; out: -- 1.8.3.1