提交 eb5042c1 编写于 作者: W Wei Yang 提交者: Yang Yingliang

mm/migrate.c: also overwrite error when it is bigger than zero

stable inclusion
from linux-4.19.102
commit b6606cc13491b4065a7a762890b9c21098812acd

--------------------------------

[ Upstream commit dfe9aa23 ]

If we get here after successfully adding page to list, err would be 1 to
indicate the page is queued in the list.

Current code has two problems:

  * on success, 0 is not returned
  * on error, if add_page_for_migratioin() return 1, and the following err1
    from do_move_pages_to_node() is set, the err1 is not returned since err
    is 1

And these behaviors break the user interface.

Link: http://lkml.kernel.org/r/20200119065753.21694-1-richardw.yang@linux.intel.com
Fixes: e0153fc2 ("mm: move_pages: return valid node id in status if the page is already on the target node").
Signed-off-by: NWei Yang <richardw.yang@linux.intel.com>
Acked-by: NYang Shi <yang.shi@linux.alibaba.com>
Cc: John Hubbard <jhubbard@nvidia.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Christoph Lameter <cl@linux.com>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: NSasha Levin <sashal@kernel.org>
Signed-off-by: NYang Yingliang <yangyingliang@huawei.com>
上级 8de9a7ef
...@@ -1672,7 +1672,7 @@ static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes, ...@@ -1672,7 +1672,7 @@ static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
err1 = do_move_pages_to_node(mm, &pagelist, current_node); err1 = do_move_pages_to_node(mm, &pagelist, current_node);
if (!err1) if (!err1)
err1 = store_status(status, start, current_node, i - start); err1 = store_status(status, start, current_node, i - start);
if (!err) if (err >= 0)
err = err1; err = err1;
out: out:
return err; return err;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册