reparent the THP split queue
From: | Qi Zheng <zhengqi.arch-AT-bytedance.com> | |
To: | hannes-AT-cmpxchg.org, hughd-AT-google.com, mhocko-AT-suse.com, roman.gushchin-AT-linux.dev, shakeel.butt-AT-linux.dev, muchun.song-AT-linux.dev, david-AT-redhat.com, lorenzo.stoakes-AT-oracle.com, ziy-AT-nvidia.com, harry.yoo-AT-oracle.com, baolin.wang-AT-linux.alibaba.com, Liam.Howlett-AT-oracle.com, npache-AT-redhat.com, ryan.roberts-AT-arm.com, dev.jain-AT-arm.com, baohua-AT-kernel.org, lance.yang-AT-linux.dev, akpm-AT-linux-foundation.org | |
Subject: | [PATCH v3 0/4] reparent the THP split queue | |
Date: | Sun, 28 Sep 2025 19:16:58 +0800 | |
Message-ID: | <cover.1759056506.git.zhengqi.arch@bytedance.com> | |
Cc: | linux-mm-AT-kvack.org, linux-kernel-AT-vger.kernel.org, cgroups-AT-vger.kernel.org, Qi Zheng <zhengqi.arch-AT-bytedance.com> | |
Archive-link: | Article |
Changes in v3: - use css_is_dying() in folio_split_queue_lock*() to check if memcg is dying (David Hildenbrand, Shakeel Butt and Zi Yan) - modify the commit message in [PATCH v2 4/4] (Roman Gushchin) - fix the build error in [PATCH v2 4/4] - collect Acked-bys and Reviewed-bys - rebase onto the next-20250926 Changes in v2: - fix build errors in [PATCH 2/4] and [PATCH 4/4] - some cleanups for [PATCH 3/4] (suggested by David Hildenbrand) - collect Acked-bys and Reviewed-bys - rebase onto the next-20250922 Hi all, In the future, we will reparent LRU folios during memcg offline to eliminate dying memory cgroups, which requires reparenting the THP split queue to its parent memcg. Similar to list_lru, the split queue is relatively independent and does not need to be reparented along with objcg and LRU folios (holding objcg lock and lru lock). Therefore, we can apply the same mechanism as list_lru to reparent the split queue first when memcg is offine. The first three patches in this series are separated from the series "Eliminate Dying Memory Cgroup" [1], mainly to do some cleanup and preparatory work. The last patch reparents the THP split queue to its parent memcg during memcg offline. Comments and suggestions are welcome! Thanks, Qi [1]. https://lore.kernel.org/all/20250415024532.26632-1-songmu... Muchun Song (3): mm: thp: replace folio_memcg() with folio_memcg_charged() mm: thp: introduce folio_split_queue_lock and its variants mm: thp: use folio_batch to handle THP splitting in deferred_split_scan() Qi Zheng (1): mm: thp: reparent the split queue during memcg offline include/linux/huge_mm.h | 4 + include/linux/memcontrol.h | 10 ++ mm/huge_memory.c | 236 ++++++++++++++++++++++++++----------- mm/memcontrol.c | 1 + 4 files changed, 179 insertions(+), 72 deletions(-) -- 2.20.1