* Re: [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages
@ 2022-03-18 7:08 Feng Tang
2022-03-18 8:24 ` Miaohe Lin
0 siblings, 1 reply; 4+ messages in thread
From: Feng Tang @ 2022-03-18 7:08 UTC (permalink / raw)
To: Miaohe Lin, akpm
Cc: ziy, baolin.wang, ying.huang, songmuchun, apopple, linux-mm,
linux-kernel
> 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 :).
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>
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
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages
2022-03-18 7:08 [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages Feng Tang
@ 2022-03-18 8:24 ` Miaohe Lin
0 siblings, 0 replies; 4+ messages in thread
From: Miaohe Lin @ 2022-03-18 8:24 UTC (permalink / raw)
To: Feng Tang
Cc: ziy, baolin.wang, ying.huang, songmuchun, apopple, linux-mm,
linux-kernel, Andrew Morton
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
>
> .
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 00/11] A few cleanup and fixup patches for migration
@ 2022-03-18 11:16 Miaohe Lin
2022-03-18 11:17 ` [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages Miaohe Lin
0 siblings, 1 reply; 4+ messages in thread
From: Miaohe Lin @ 2022-03-18 11:16 UTC (permalink / raw)
To: akpm
Cc: ziy, baolin.wang, ying.huang, songmuchun, apopple, linux-mm,
linux-kernel, linmiaohe
Hi everyone,
This series contains a few patches to remove unneeded variables, jump
label and use helper to simplify the code. Also we fix some bugs such
as page refcounts leak , invalid node access and so on. More details
can be found in the respective changelogs. Thanks!
---
v1->v2:
collect reviewed-by tag
fix some commit log
remove unneeded nr_failed assignment per Huang Ying
getting the types correct to use min() per Andrew
delay some patches to make this easier to move forward
Thanks Muchun, Baolin, Zi Yan,Huang Ying, Andrew, Alistair for review!
---
Miaohe Lin (11):
mm/migration: remove unneeded local variable mapping_locked
mm/migration: remove unneeded out label
mm/migration: remove unneeded local variable page_lru
mm/migration: fix the confusing PageTransHuge check
mm/migration: use helper function vma_lookup() in
add_page_for_migration
mm/migration: use helper macro min in do_pages_stat
mm/migration: avoid unneeded nodemask_t initialization
mm/migration: remove some duplicated codes in migrate_pages
mm/migration: fix potential page refcounts leak in migrate_pages
mm/migration: fix potential invalid node access for reclaim-based
migration
mm/migration: fix possible do_pages_stat_array racing with memory
offline
mm/migrate.c | 94 +++++++++++++++++++++++-----------------------------
1 file changed, 42 insertions(+), 52 deletions(-)
--
2.23.0
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages
2022-03-18 11:16 [PATCH v2 00/11] A few cleanup and fixup patches for migration Miaohe Lin
@ 2022-03-18 11:17 ` Miaohe Lin
2022-03-18 8:24 ` Muchun Song
0 siblings, 1 reply; 4+ messages in thread
From: Miaohe Lin @ 2022-03-18 11:17 UTC (permalink / raw)
To: akpm
Cc: ziy, baolin.wang, ying.huang, songmuchun, apopple, linux-mm,
linux-kernel, linmiaohe
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.
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
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages
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
0 siblings, 0 replies; 4+ messages in thread
From: Muchun Song @ 2022-03-18 8:24 UTC (permalink / raw)
To: Miaohe Lin
Cc: Andrew Morton, Zi Yan, baolin.wang, Huang Ying, Alistair Popple,
Linux Memory Management List, LKML
On Thu, Mar 17, 2022 at 10:41 PM Miaohe Lin <linmiaohe@huawei.com> 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.
>
> 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>
Reviewed-by: Muchun Song <songmuchun@bytedance.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-03-18 8:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-18 7:08 [PATCH v2 09/11] mm/migration: fix potential page refcounts leak in migrate_pages Feng Tang
2022-03-18 8:24 ` Miaohe Lin
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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox