From: Baolin Wang <baolin.wang@linux.alibaba.com>
To: Lance Yang <lance.yang@linux.dev>
Cc: akpm@linux-foundation.org, david@kernel.org, ljs@kernel.org,
hughd@google.com, willy@infradead.org, ziy@nvidia.com,
liam@infradead.org, npache@redhat.com, ryan.roberts@arm.com,
dev.jain@arm.com, baohua@kernel.org, linux-mm@kvack.org,
linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [RFC PATCH v2 06/11] mm: khugepaged: allow khugepaged to check all shmem mTHP-sized orders
Date: Thu, 11 Jun 2026 08:47:14 +0800 [thread overview]
Message-ID: <00bdc0e2-8ce7-4bda-aca3-c22df55b4979@linux.alibaba.com> (raw)
In-Reply-To: <20260610113352.25352-1-lance.yang@linux.dev>
On 6/10/26 7:33 PM, Lance Yang wrote:
>
> On Wed, Jun 10, 2026 at 06:29:14PM +0800, Baolin Wang wrote:
>> We are now ready to enable shmem mTHP collapse, allowing
>> thp_vma_allowable_orders() to check all permissible shmem large orders.
>>
>> Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com>
>> ---
>> mm/khugepaged.c | 7 ++++++-
>> 1 file changed, 6 insertions(+), 1 deletion(-)
>>
>> diff --git a/mm/khugepaged.c b/mm/khugepaged.c
>> index 75b18ec4a6c3..a87918b7e18c 100644
>> --- a/mm/khugepaged.c
>> +++ b/mm/khugepaged.c
>> @@ -578,9 +578,14 @@ static unsigned long collapse_possible_orders(struct vm_area_struct *vma,
>> {
>> unsigned long orders;
>>
>> - /* If khugepaged is scanning an anonymous vma, allow mTHP collapse */
>> + /*
>> + * If khugepaged is scanning an anonymous or shmem vma,
>> + * allow mTHP collapse.
>> + */
>> if ((tva_flags == TVA_KHUGEPAGED) && vma_is_anonymous(vma))
>> orders = THP_ORDERS_ALL_ANON;
>> + else if ((tva_flags == TVA_KHUGEPAGED) && vma_is_shmem(vma))
>> + orders = THP_ORDERS_ALL_FILE_DEFAULT;
>
> Hmm... for shmem, is the lower bound in mthp_collapse() expected?
>
> #define KHUGEPAGED_MIN_MTHP_ORDER 2
>
> #define THP_ORDERS_ALL_FILE_DEFAULT \
> ((BIT(MAX_PAGECACHE_ORDER + 1) - 1) & ~BIT(0))
>
> KHUGEPAGED_MIN_MTHP_ORDER is 2, which was introduced for anon collapse.
> For shmem, though, we're feeding mthp_collapse() orders from
> THP_ORDERS_ALL_FILE_DEFAULT, and that only filter out order-0 ...
>
> if (order > KHUGEPAGED_MIN_MTHP_ORDER &&
> (enabled_orders & GENMASK(order - 1, 0))) {
> order--;
> continue;
> }
>
> So order-1 never gets a chance. The walker stops at order-2 and never
> tries it, right?
Good suggestion. Originally, Nico used chunks (one chunk representing
the KHUGEPAGED_MIN_MTHP_ORDER range) to record the bitmap, which was
inconvenient for shmem to extend to order 1 collapse. Now that the
bitmap has been extended to MAX_PTRS_PER_PTE, that earlier limitation no
longer exists. I'll fix this.
Thanks for taking a look.
next prev parent reply other threads:[~2026-06-11 0:47 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-10 10:29 [RFC PATCH v2 00/11] add shmem mTHP collapse support Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 01/11] mm: khugepaged: add max_ptes_none check in collapse_file() Baolin Wang
2026-06-12 10:10 ` Nico Pache
2026-06-10 10:29 ` [RFC PATCH v2 02/11] mm: khugepaged: generalize collapse_file() for shmem mTHP support Baolin Wang
2026-06-12 10:16 ` Nico Pache
2026-06-15 6:39 ` Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 03/11] mm: khugepaged: add an order check for PMD-sized THP statistics Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 04/11] mm: khugepaged: add shmem mTHP collapse support Baolin Wang
2026-06-10 12:13 ` Lance Yang
2026-06-11 0:31 ` Baolin Wang
2026-06-10 12:44 ` Lance Yang
2026-06-11 0:42 ` Baolin Wang
2026-06-11 2:47 ` Lance Yang
2026-06-11 11:15 ` Baolin Wang
2026-06-12 10:22 ` Nico Pache
2026-06-15 6:46 ` Baolin Wang
2026-06-11 6:06 ` Lance Yang
2026-06-11 12:11 ` Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 05/11] mm: shmem: run khugepaged for all shmem mTHP orders Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 06/11] mm: khugepaged: allow khugepaged to check all shmem mTHP-sized orders Baolin Wang
2026-06-10 11:33 ` Lance Yang
2026-06-11 0:47 ` Baolin Wang [this message]
2026-06-10 10:29 ` [RFC PATCH v2 07/11] mm: khugepaged: skip large folios that don't need to be collapsed Baolin Wang
2026-06-11 4:59 ` Lance Yang
2026-06-11 11:29 ` Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 08/11] selftests: mm: extend the check_huge() to support mTHP check Baolin Wang
2026-06-12 10:32 ` Nico Pache
2026-06-15 6:51 ` Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 09/11] selftests: mm: move gather_after_split_folio_orders() into vm_util.c file Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 10/11] selftests: mm: implement the mTHP-sized hugepage check helpers Baolin Wang
2026-06-10 10:29 ` [RFC PATCH v2 11/11] selftests: mm: add mTHP collapse test cases Baolin Wang
2026-06-12 10:41 ` Nico Pache
2026-06-10 16:28 ` [RFC PATCH v2 00/11] add shmem mTHP collapse support Nico Pache
2026-06-11 0:52 ` Baolin Wang
2026-06-11 6:18 ` Lorenzo Stoakes
2026-06-11 11:46 ` Baolin Wang
2026-06-11 12:15 ` Lorenzo Stoakes
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=00bdc0e2-8ce7-4bda-aca3-c22df55b4979@linux.alibaba.com \
--to=baolin.wang@linux.alibaba.com \
--cc=akpm@linux-foundation.org \
--cc=baohua@kernel.org \
--cc=david@kernel.org \
--cc=dev.jain@arm.com \
--cc=hughd@google.com \
--cc=lance.yang@linux.dev \
--cc=liam@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=ljs@kernel.org \
--cc=npache@redhat.com \
--cc=ryan.roberts@arm.com \
--cc=willy@infradead.org \
--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
Powered by JetHome