Re: [PATCH v2 06/13] mm/gup: Drop folio_fast_pin_allowed() in hugepd processing

From: Ryan Roberts
Date: Thu Jan 18 2024 - 10:16:03 EST


On 17/01/2024 13:22, Jason Gunthorpe wrote:
> On Tue, Jan 16, 2024 at 06:32:32PM +0000, Christophe Leroy wrote:
>>>> hugepd is a page directory dedicated to huge pages, where you have huge
>>>> pages listed instead of regular pages. For instance, on powerpc 32 with
>>>> each PGD entries covering 4Mbytes, a regular page table has 1024 PTEs. A
>>>> hugepd for 512k is a page table with 8 entries.
>>>>
>>>> And for 8Mbytes entries, the hugepd is a page table with only one entry.
>>>> And 2 consecutive PGS entries will point to the same hugepd to cover the
>>>> entire 8Mbytes.
>>>
>>> That still sounds alot like the ARM thing - except ARM replicates the
>>> entry, you also said PPC relicates the entry like ARM to get to the
>>> 8M?
>>
>> Is it like ARM ? Not sure. The PTE is not in the PGD it must be in a L2
>> directory, even for 8M.
>
> Your diagram looks almost exactly like ARM to me.
>
> The key thing is that the address for the L2 Table is *always* formed as:
>
> L2 Table Base << 12 + L2 Index << 2 + 00
>
> Then the L2 Descriptor must contains bits indicating the page
> size. The L2 Descriptor is replicated to every 4k entry that the page
> size covers.
>
> The only difference I see is the 8M case which has a page size greater
> than a single L1 entry.
>
>> Yes that's how it works on powerpc. For 8xx we used to do that for both
>> 8M and 512k pages. Now for 512k pages we do kind of like ARM (which
>> means replicating the entry 128 times) as that's needed to allow mixing
>> different page sizes for a given PGD entry.
>
> Right, you want to have granular page sizes or it becomes unusable in
> the general case
>
>> But for 8M pages that would mean replicating the entry 2048 times.
>> That's a bit too much isn't it ?
>
> Indeed, de-duplicating the L2 Table is a neat optimization.
>
>>> So if you imagine a pmd_leaf(), pmd_leaf_size() and a pte_leaf_size()
>>> that would return enough information for both.
>>
>> pmd_leaf() ? Unless I'm missing something I can't do leaf at PMD (PGD)
>> level. It must be a two-level process even for pages bigger than a PMD
>> entry.
>
> Right, this is the normal THP/hugetlb situation on x86/etc. It
> wouldn't apply here since it seems the HW doesn't have a bit in the L1
> descriptor to indicate leaf.
>
> Instead for PPC this hugepd stuff should start to follow Ryan's
> generic work for ARM contig:
>
> https://lore.kernel.org/all/20231218105100.172635-1-ryan.roberts@xxxxxxx/
>
> Specifically the arch implementation:
>
> https://lore.kernel.org/linux-mm/20231218105100.172635-15-ryan.roberts@xxxxxxx/
>
> Ie the arch should ultimately wire up the replication and variable
> page size bits within its implementation of set_ptes(). set_ptes()s
> gets a contiguous run of address and should install it with maximum
> use of the variable page sizes. The core code will start to call
> set_ptes() in more cases as Ryan gets along his project.

Note that it's not just set_ptes() that you want to batch; there are other calls
that can benefit too. See patches 2 and 3 in the series you linked. (although
I'm working with DavidH on this and the details are going to change a little).

>
> For the purposes of GUP, where are are today and where we are going,
> it would be much better to not have a special PPC specific "hugepd"
> parser. Just process each of the 4k replicates one by one like ARM is
> starting with.
>
> The arch would still have to return the correct page address from
> pte_phys() which I think Ryan is doing by having the replicates encode
> the full 4k based address in each entry.

Yes; although its actually also a requirement of the arm architecture. Since the
contig bit is just a hint that the HW may or may not take any notice of, the
page tables have to be correct for the case where the HW just reads them in base
pages. Fixing up the bottom bits should be trivial using the PTE pointer, if
needed for ppc.

> The HW will ignore those low
> bits and pte_phys() then works properly. This would work for PPC as
> well, excluding the 8M optimization.
>
> Going forward I'd expect to see some pte_page_size() that returns the
> size bits and GUP can have logic to skip reading replicates.

Yes; pte_batch_remaining() in patch 2 is an attempt at this. But as I said the
details will likely change a little.

>
> The advantage of all this is that it stops making the feature special
> and the work Ryan is doing to generically push larger folios into
> set_ptes will become usable on these PPC platforms as well. And we can
> kill the PPC specific hugepd.
>
> Jason