From: Miaohe Lin <linmiaohe@huawei.com>
To: Feng Tang <feng.tang@intel.com>
Cc: <ziy@nvidia.com>, <baolin.wang@linux.alibaba.com>,
<ying.huang@intel.com>, <songmuchun@bytedance.com>,
<apopple@nvidia.com>, <linux-mm@kvack.org>,
<linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages
Date: Fri, 18 Mar 2022 16:24:28 +0800 [thread overview]
Message-ID: <4953e998-c088-29f7-e240-d27513bbfc93@huawei.com> (raw)
In-Reply-To: <20220318070800.GB436@shbuild999.sh.intel.com>
On 2022/3/18 15:08, Feng Tang wrote:
>> In -ENOMEM case, there might be some subpages of fail-to-migrate THPs
>> left in thp_split_pages list. We should move them back to migration
>> list so that they could be put back to the right list by the caller
>> otherwise the page refcnt will be leaked here. Also adjust nr_failed
>> and nr_thp_failed accordingly to make vm events account more accurate.
>
> We just met a real world case for this when checking a malloc-oom
> issue and our fix is similar with yours :).
>
Oh, what a coincidence! :)
> So I think you can remove the 'potential' from the patch subject.
> Feel free to add
>
> Tested-by: Feng Tang <feng.tang@intel.com>
> Reviewed-by: Feng Tang <feng.tang@intel.com>
Many thanks for your test and comment!
>
> Thanks,
> Feng
>
>> Fixes: b5bade978e9b ("mm: migrate: fix the return value of migrate_pages()")
>> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
>> Reviewed-by: Zi Yan <ziy@nvidia.com>
>> Reviewed-by: "Huang, Ying" <ying.huang@intel.com>
>> Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com>
>> ---
>> mm/migrate.c | 8 ++++++++
>> 1 file changed, 8 insertions(+)
>>
>> diff --git a/mm/migrate.c b/mm/migrate.c
>> index 63a87ef0996f..97dfd1f4870d 100644
>> --- a/mm/migrate.c
>> +++ b/mm/migrate.c
>> @@ -1438,6 +1438,14 @@ int migrate_pages(struct list_head *from, new_page_t get_new_page,
>> }
>>
>> nr_failed_pages += nr_subpages;
>> + /*
>> + * There might be some subpages of fail-to-migrate THPs
>> + * left in thp_split_pages list. Move them back to migration
>> + * list so that they could be put back to the right list by
>> + * the caller otherwise the page refcnt will be leaked.
>> + */
>> + list_splice_init(&thp_split_pages, from);
>> + nr_thp_failed += thp_retry;
>> goto out;
>> case -EAGAIN:
>> if (is_thp)
>> --
>> 2.23.0
>
> .
>
next prev parent reply other threads:[~2022-03-18 8:24 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-18 7:08 Feng Tang
2022-03-18 8:24 ` Miaohe Lin [this message]
2022-03-18 11:16 [PATCH v2 00/11] A few cleanup and fixup patches for migration Miaohe Lin
2022-03-18 11:17 ` [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages Miaohe Lin
2022-03-18 8:24 ` Muchun Song
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4953e998-c088-29f7-e240-d27513bbfc93@huawei.com \
--to=linmiaohe@huawei.com \
--cc=akpm@linux-foundation.org \
--cc=apopple@nvidia.com \
--cc=baolin.wang@linux.alibaba.com \
--cc=feng.tang@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=songmuchun@bytedance.com \
--cc=ying.huang@intel.com \
--cc=ziy@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox