From: siddhartha@kenip.in
To: Vlastimil Babka <vbabka@suse.cz>
Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
Dev Jain <dev.jain@arm.com>,
linux-mm@kvack.org, krill.shutemov@linux.intel.com
Subject: Re: [PATCH follow-up] mm/thp: Requesting status update on alignment performance configuration
Date: Fri, 26 Sep 2025 04:42:32 +0530 [thread overview]
Message-ID: <3570b4b8e8df18f33d622552f11f346d@kenip.in> (raw)
In-Reply-To: <3bab750b-0aa5-4df5-9be1-9132c7980f2b@suse.cz>
On 2025-09-26 00:16, Vlastimil Babka wrote:
> It's rude to send emails with "request read receipt". Lorenzo explained
> that
> already in a response to your off-list e-mail week ago.
>
> On 9/25/25 15:54, siddhartha@kenip.in wrote:
>> On 2025-09-02 18:38, siddhartha@kenip.in wrote:
>>> On 2025-08-12 05:20, siddhartha@kenip.in wrote:
>>>> On 2025-08-12 03:44, siddhartha@kenip.in wrote:
>>>>> On 2025-07-28 16:30, Vlastimil Babka wrote:
>>>> **Pseudo-diff of relevant changes:**
>>>> ```diff
>>>> diff --git a/mm/huge_memory.c b/mm/huge_memory.c
>>>> index abcd1234efgh..ijkl5678mnop 100644
>>>> --- a/mm/huge_memory.c
>>>> +++ b/mm/huge_memory.c
>>>> @@ -102,6 +102,18 @@ static bool __thp_enabled = true;
>>>> static bool __thp_defrag = true;
>>>> +/* New performance configuration toggle */
>>>> +static bool thp_performance_mode = false;
>>>> +
>>>> +static int __init setup_thp_performance(char *str)
>>>> +{
>>>> + if (!str)
>>>> + return 0;
>>>> + if (!strcmp(str, "on"))
>>>> + thp_performance_mode = true;
>>>> + return 1;
>>>> +}
>>>> +__setup("thp_performance=", setup_thp_performance);
>>>>
>>>> static inline bool transparent_hugepage_enabled(struct
>>>> vm_area_struct
>>>> *vma)
>>>> {
>>>> @@ -245,7 +257,12 @@ static bool hugepage_vma_check(struct
>>>> vm_area_struct *vma,
>>>> /* Existing allocation checks */
>>>> - if (khugepaged_always())
>>>> - return true;
>>>> + if (thp_performance_mode)
>>>> + return true; /* Aggressively prefer THP in
>>>> performance
>>>> mode */
>>>> + if (khugepaged_always())
>>>> + return true;
>>>>
>>>> /* Rest of allocation logic */
>>>> }
>>>>
>>>> Please Note:
>>>>
>>>> This is a pseudo-diff since my initial work was developed on Intel
>>>> Developer Cloud workloads without a locally cloned copy of the exact
>>>> committed files.
>>>>
>>>> If there’s interest, I can provide additional benchmark data and
>>>> extend the implementation to expose runtime toggling via
>>>> /sys/kernel/mm/transparent_hugepage/performance.
>
> Sorry, it's necessary to send a real patch, not a pseudo-patch,
> including
> the test results in its commit log.
>> I fully understand the complexities around VMA merging, Rik’s earlier
>> patch,
>> and possible regressions noted with cactusBSSN and ebizzy workloads.
>> However,
>> given the continued performance relevance to AI/ML inference
>> pipelines,
>> I
>> believe further testing and validation would help determine whether
>> this
>> knob
>> can be safely integrated (or adapted) for wider use.
>>
>> Could you please share the **current status of testing or review** on
>> this patch?
>
> We can't test or review a pseudo-patch. It's not even clear to me what
> it's
> trying to achieve.
>
>> If there are specific benchmarks, traces, or refinements needed from
>> my
>> side, I
>> would be happy to assist in generating or providing them.
>
> You said you saw improvements in some benchmarks, so re-evaluating them
> on
> current mainline with a real patch would be the way.
>
>> I greatly appreciate your time and guidance on moving this forward.
>>
>> Thank you again for your support.
>>
>> Best regards,
>> Siddhartha Sharma
>> siddhartha@kenip.in
Hello Vlastimil, Lorenzo, and all,
Thank you for your feedback — and apologies for the “read receipt” flag,
I understand that was inappropriate for the list. My intention was only
to ensure
my earlier follow-up wasn’t missed, not to be intrusive.
To clarify: my original emails tried to outline observed performance
behavior when working with OpenVINO-based inference runs. The
pseudo-diff I shared was
intended to explain the concept, but I now understand that without a
proper patch against current mainline it’s not actionable for you to
test or review.
I will rebase my changes onto current mainline and submit a real patch
so it’s clear exactly what is being modified. That way, any evaluation
can be based on
real code, not on assumptions or pseudo-code.
Thank you again for pointing this out — I appreciate your patience, and
I’ll make sure the next iteration is a proper patch submission suitable
for review.
I have opened a pull request in the openvino GitHub repository which I
also shared earlier but the guy who is supposed to review it is on a
sick leave, but I have seen some commits being merged recently so that's
a good sign. As soon as that's done with the review and I get the
developer cloud directory where it was originally worked upon, I will
share all the necessary details and the actual code.
Thanks for your time and support, I really appreciate it!
Best regards,
Siddhartha Sharma
prev parent reply other threads:[~2025-09-25 23:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-11 22:14 [PATCH] mm: limit THP alignment – performance gain observed in AI inference workloads siddhartha
[not found] ` <595a57cd68463194fb2d6f34e9366e38@vger.kernel.org>
[not found] ` <0197c80c5bc7989b858b79317a4fbc45@kenip.in>
2025-09-25 13:54 ` [PATCH follow-up] mm/thp: Requesting status update on alignment performance configuration siddhartha
2025-09-25 18:46 ` Vlastimil Babka
2025-09-25 23:12 ` siddhartha [this message]
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=3570b4b8e8df18f33d622552f11f346d@kenip.in \
--to=siddhartha@kenip.in \
--cc=dev.jain@arm.com \
--cc=krill.shutemov@linux.intel.com \
--cc=linux-mm@kvack.org \
--cc=lorenzo.stoakes@oracle.com \
--cc=vbabka@suse.cz \
/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