Re: [PATCH 04/11] mm: Rework compound_head() for power-of-2 sizeof(struct page)

From: Usama Arif

Date: Sat Dec 06 2025 - 12:36:09 EST



>> hmm my understanding reviewing up until this patch of the series is that everything works
>> the same as old code when struct page is not a power of 2. Returning page here means you dont
>> fix page head when sizeof(struct page) is not a power of 2?
>
> There's no change for non-power-of-2 sizeof(struct page) as there's no
> fake heads because there's no HVO for such cases.


Yeah, I forgot that while reviewing :). I see its mentioned in vmemmap_dedup.rst as well.
I think might be good to add a reminder in the commit message that HVO doesn't apply to
non-power-of-2 sizeof(struct page), but no strong preference :)

>
> See hugetlb_vmemmap_optimizable_size() as I mentioned in the comment.
>
>>
>>> /*
>>> * Only addresses aligned with PAGE_SIZE of struct page may be fake head
>>> * struct page. The alignment check aims to avoid access the fields (
>>> @@ -223,10 +230,13 @@ static __always_inline const struct page *page_fixed_fake_head(const struct page
>>> * because the @page is a compound page composed with at least
>>> * two contiguous pages.
>>> */
>>> - unsigned long head = READ_ONCE(page[1].compound_info);
>>> + unsigned long info = READ_ONCE(page[1].compound_info);
>>>
>>> - if (likely(head & 1))
>>> - return (const struct page *)(head - 1);
>>> + if (likely(info & 1)) {
>>> + unsigned long p = (unsigned long)page;
>>> +
>>> + return (const struct page *)(p & info);
>>
>> Would it be worth writing a comment over here similar to what you have in set_compound_head
>> to explain why this works? i.e. compound_info contains the mask derived from folio order that
>> can be applied to the virtual address to get the head page.
>
> But this code is about to be deleted. Is it really worth it?

Ack, hadn't gotten to that commit.