Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp40187ybl; Wed, 22 Jan 2020 15:40:22 -0800 (PST) X-Google-Smtp-Source: APXvYqypOElB+tnL4xi4kh2iuvXkCoRlY/TssyUP9FY6lJTfwnLhNn2uVxlTvToZMiW3I4O0SZLZ X-Received: by 2002:a05:6808:3b4:: with SMTP id n20mr8255384oie.123.1579736422438; Wed, 22 Jan 2020 15:40:22 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1579736422; cv=none; d=google.com; s=arc-20160816; b=nUJd+Raft2ElTV+rnLAe9Y8nBdzmN0/Q71xdTOE42AqQTkTdqcL3qjVIwZ74xahvo4 vgIPm7TgL/d3ekfp7FyszyUZ1GZulQ9taiuViqjFO5ldyRuKqOjhiuyFX4FdKJuEdDG0 902rqj2HdK2KnpCwdduiQ7rdP4EdB0gbeGGURccPoMrC7y40a/xLRnDhf9hEBjuwhk9c hZDt7fQsED2UAlTDjaMmCD+pqwzT9EXTZPs4wfEueSSez7I+wK+FIeBUkluSTGck1u5V MZljoZyz+oZX/iuYd7NAQH49H8mzkzvf7hj3Q2lDOdrxZLOcbakJzPWZD3IV9geIiprW v48w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=5I9N93rh1cboeR7QcoCORRWDQU2lTDNkD0NdX15099k=; b=EjhNvvgh5x3N4/nBCldklqovB6DDbwnEAScrLqUV1cyE/ATIasNXTcE9ZS8Gwsnlav URhJxBDMBdcAh+l5o5hyFiaWE+vze4sSrL5VEiySYg48Qy6wzzJE3E9gv88B2p3Ul/7N okYxJ3Kt9N2nDb09ZG66QKsX0EEwDH2LnKlHDssm5PcODXvfRKd5dmyWQNRYCYueDFQB 5TeR9YtP54C9JRSl9oo0HEbAcRlkpmIxPXv3oDR+NSMbYMJw5I9DWJ9dKfLZRJE7nYrz JJfIBrN6FYVMzc71CuOgbKo2vOM/gz5NT2RRT9pYSyKG7EwzMH/7pKa0RK1wTpyeGzzT maBw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 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. [209.132.180.67]) by mx.google.com with ESMTP id i5si5336oif.211.2020.01.22.15.40.09; Wed, 22 Jan 2020 15:40:22 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 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 S1727816AbgAVXjF (ORCPT + 99 others); Wed, 22 Jan 2020 18:39:05 -0500 Received: from out30-54.freemail.mail.aliyun.com ([115.124.30.54]:46607 "EHLO out30-54.freemail.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725911AbgAVXjF (ORCPT ); Wed, 22 Jan 2020 18:39:05 -0500 X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R681e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=e01f04446;MF=yang.shi@linux.alibaba.com;NM=1;PH=DS;RN=7;SR=0;TI=SMTPD_---0ToN1pCo_1579736331; Received: from localhost(mailfrom:yang.shi@linux.alibaba.com fp:SMTPD_---0ToN1pCo_1579736331) by smtp.aliyun-inc.com(127.0.0.1); Thu, 23 Jan 2020 07:39:02 +0800 From: Yang Shi To: mhocko@suse.com, richardw.yang@linux.intel.com, akpm@linux-foundation.org Cc: yang.shi@linux.alibaba.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, stable@vger.kernel.org Subject: [v2 PATCH] mm: move_pages: report the number of non-attempted pages Date: Thu, 23 Jan 2020 07:38:51 +0800 Message-Id: <1579736331-85494-1-git-send-email-yang.shi@linux.alibaba.com> X-Mailer: git-send-email 1.8.3.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since commit a49bd4d71637 ("mm, numa: rework do_pages_move"), the semantic of move_pages() was changed to return the number of non-migrated pages (failed to migration) and the call would be aborted immediately if migrate_pages() returns positive value. But it didn't report the number of pages that we even haven't attempted to migrate. So, fix it by including non-attempted pages in the return value. Fixes: a49bd4d71637 ("mm, numa: rework do_pages_move") Suggested-by: Michal Hocko Cc: Wei Yang Cc: [4.17+] Signed-off-by: Yang Shi --- v2: Rebased on top of the latest mainline kernel per Andrew mm/migrate.c | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/mm/migrate.c b/mm/migrate.c index 86873b6..9b8eb5d 100644 --- a/mm/migrate.c +++ b/mm/migrate.c @@ -1627,8 +1627,18 @@ static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes, start = i; } else if (node != current_node) { err = do_move_pages_to_node(mm, &pagelist, current_node); - if (err) + if (err) { + /* + * Positive err means the number of failed + * pages to migrate. Since we are going to + * abort and return the number of non-migrated + * pages, so need incude the rest of the + * nr_pages that have not attempted as well. + */ + if (err > 0) + err += nr_pages - i - 1; goto out; + } err = store_status(status, start, current_node, i - start); if (err) goto out; @@ -1659,8 +1669,11 @@ static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes, goto out_flush; err = do_move_pages_to_node(mm, &pagelist, current_node); - if (err) + if (err) { + if (err > 0) + err += nr_pages - i - 1; goto out; + } if (i > start) { err = store_status(status, start, current_node, i - start); if (err) @@ -1674,6 +1687,13 @@ static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes, /* Make sure we do not overwrite the existing error */ err1 = do_move_pages_to_node(mm, &pagelist, current_node); + /* + * Don't have to report non-attempted pages here since: + * - If the above loop is done gracefully there is not non-attempted + * page. + * - If the above loop is aborted to it means more fatal error + * happened, should return err. + */ if (!err1) err1 = store_status(status, start, current_node, i - start); if (!err) -- 1.8.3.1