Re: [PATCH V2 1/2] mm/sparsemem: Enable vmem_altmap support in vmemmap_populate_basepages()

From: Anshuman Khandual
Date: Tue Mar 24 2020 - 08:01:38 EST



On 03/20/2020 10:38 PM, Robin Murphy wrote:
> On 2020-03-04 2:10 pm, Anshuman Khandual wrote:
>> vmemmap_populate_basepages() is used across platforms to allocate backing
>> memory for vmemmap mapping. This is used as a standard default choice or
>> as a fallback when intended huge pages allocation fails. This just creates
>> entire vmemmap mapping with base pages (PAGE_SIZE).
>>
>> On arm64 platforms, vmemmap_populate_basepages() is called instead of the
>> platform specific vmemmap_populate() when ARM64_SWAPPER_USES_SECTION_MAPS
>> is not enabled as in case for ARM64_16K_PAGES and ARM64_64K_PAGES configs.
>>
>> At present vmemmap_populate_basepages() does not support allocating from
>> driver defined struct vmem_altmap while trying to create vmemmap mapping
>> for a device memory range. It prevents ARM64_16K_PAGES and ARM64_64K_PAGES
>> configs on arm64 from supporting device memory with vmemap_altmap request.
>>
>> This enables vmem_altmap support in vmemmap_populate_basepages() unlocking
>> device memory allocation for vmemap mapping on arm64 platforms with 16K or
>> 64K base page configs.
>>
>> Each architecture should evaluate and decide on subscribing device memory
>> based base page allocation through vmemmap_populate_basepages(). Hence lets
>> keep it disabled on all archs in order to preserve the existing semantics.
>> A subsequent patch enables it on arm64.
>
> I guess buy-in for this change largely depends on whether any other architectures are likely to want to share it. The existing altmap users don't look like they would, so that's probably more a question for the likes of S390 and RISC-V.

If vmemmap_populate_basepages() exists to be shared across platforms for
creating vmemmap mapping with base pages, then there does not seem to be
any good reason for it not to support altmap requests as well.

>
> Failing that, simply decoupling arm64 from vmemmap_populate_basepages() seems viable - I tried hacking up a quick proof-of-concept (attached at the end) and it doesn't come out looking *too* disgusting.

Even though this option seemed viable to me at the beginning, there was
no particular pressing reasons for vmemmap_populate_basepages() to exist
as a generic function and not support atlamp. If each architecture just
create their own policies regarding which level to support altmap or not
while also using a generic function, then why even have a minimum shared
function like vmemmap_populate_basepages() in the first place.

>
>> Cc: Catalin Marinas <catalin.marinas@xxxxxxx>
>> Cc: Will Deacon <will@xxxxxxxxxx>
>> Cc: Mark Rutland <mark.rutland@xxxxxxx>
>> Cc: Paul Walmsley <paul.walmsley@xxxxxxxxxx>
>> Cc: Palmer Dabbelt <palmer@xxxxxxxxxxx>
>> Cc: Tony Luck <tony.luck@xxxxxxxxx>
>> Cc: Fenghua Yu <fenghua.yu@xxxxxxxxx>
>> Cc: Dave Hansen <dave.hansen@xxxxxxxxxxxxxxx>
>> Cc: Andy Lutomirski <luto@xxxxxxxxxx>
>> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
>> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
>> Cc: Ingo Molnar <mingo@xxxxxxxxxx>
>> Cc: David Hildenbrand <david@xxxxxxxxxx>
>> Cc: Mike Rapoport <rppt@xxxxxxxxxxxxx>
>> Cc: Michal Hocko <mhocko@xxxxxxxx>
>> Cc: "Matthew Wilcox (Oracle)" <willy@xxxxxxxxxxxxx>
>> Cc: "Kirill A. Shutemov" <kirill.shutemov@xxxxxxxxxxxxxxx>
>> Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
>> Cc: Dan Williams <dan.j.williams@xxxxxxxxx>
>> Cc: Pavel Tatashin <pasha.tatashin@xxxxxxxxxx>
>> Cc: linux-arm-kernel@xxxxxxxxxxxxxxxxxxx
>> Cc: linux-ia64@xxxxxxxxxxxxxxx
>> Cc: linux-riscv@xxxxxxxxxxxxxxxxxxx
>> Cc: x86@xxxxxxxxxx
>> Cc: linux-kernel@xxxxxxxxxxxxxxx
>>
>> Acked-by: Will Deacon <will@xxxxxxxxxx>
>> Signed-off-by: Anshuman Khandual <anshuman.khandual@xxxxxxx>
>> ---
>> Â arch/arm64/mm/mmu.cÂÂÂÂÂ |Â 2 +-
>> Â arch/ia64/mm/discontig.c |Â 2 +-
>> Â arch/riscv/mm/init.cÂÂÂÂ |Â 2 +-
>> Â arch/x86/mm/init_64.cÂÂÂ |Â 6 +++---
>> Â include/linux/mm.hÂÂÂÂÂÂ |Â 5 +++--
>> Â mm/sparse-vmemmap.cÂÂÂÂÂ | 16 +++++++++++-----
>> Â 6 files changed, 20 insertions(+), 13 deletions(-)
>>
>> diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c
>> index 9b08f7c7e6f0..27cb95c471eb 100644
>> --- a/arch/arm64/mm/mmu.c
>> +++ b/arch/arm64/mm/mmu.c
>> @@ -1036,7 +1036,7 @@ static void free_empty_tables(unsigned long addr, unsigned long end,
>> Â int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
>> ÂÂÂÂÂÂÂÂÂ struct vmem_altmap *altmap)
>> Â {
>> -ÂÂÂ return vmemmap_populate_basepages(start, end, node);
>> +ÂÂÂ return vmemmap_populate_basepages(start, end, node, NULL);
>> Â }
>> Â #elseÂÂÂ /* !ARM64_SWAPPER_USES_SECTION_MAPS */
>> Â int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
>> diff --git a/arch/ia64/mm/discontig.c b/arch/ia64/mm/discontig.c
>> index 4f33f6e7e206..20409f3afea8 100644
>> --- a/arch/ia64/mm/discontig.c
>> +++ b/arch/ia64/mm/discontig.c
>> @@ -656,7 +656,7 @@ void arch_refresh_nodedata(int update_node, pg_data_t *update_pgdat)
>> Â int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
>> ÂÂÂÂÂÂÂÂÂ struct vmem_altmap *altmap)
>> Â {
>> -ÂÂÂ return vmemmap_populate_basepages(start, end, node);
>> +ÂÂÂ return vmemmap_populate_basepages(start, end, node, NULL);
>> Â }
>> Â Â void vmemmap_free(unsigned long start, unsigned long end,
>> diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
>> index 965a8cf4829c..1d7451c91982 100644
>> --- a/arch/riscv/mm/init.c
>> +++ b/arch/riscv/mm/init.c
>> @@ -501,6 +501,6 @@ void __init paging_init(void)
>> Â int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ struct vmem_altmap *altmap)
>> Â {
>> -ÂÂÂ return vmemmap_populate_basepages(start, end, node);
>> +ÂÂÂ return vmemmap_populate_basepages(start, end, node, NULL);
>> Â }
>> Â #endif
>> diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
>> index abbdecb75fad..3272fe0d844a 100644
>> --- a/arch/x86/mm/init_64.c
>> +++ b/arch/x86/mm/init_64.c
>> @@ -1471,7 +1471,7 @@ static int __meminit vmemmap_populate_hugepages(unsigned long start,
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂ vmemmap_verify((pte_t *)pmd, node, addr, next);
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂ continue;
>> ÂÂÂÂÂÂÂÂÂ }
>> -ÂÂÂÂÂÂÂ if (vmemmap_populate_basepages(addr, next, node))
>> +ÂÂÂÂÂÂÂ if (vmemmap_populate_basepages(addr, next, node, NULL))
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂ return -ENOMEM;
>> ÂÂÂÂÂ }
>> ÂÂÂÂÂ return 0;
>> @@ -1483,7 +1483,7 @@ int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
>> ÂÂÂÂÂ int err;
>> Â ÂÂÂÂÂ if (end - start < PAGES_PER_SECTION * sizeof(struct page))
>> -ÂÂÂÂÂÂÂ err = vmemmap_populate_basepages(start, end, node);
>> +ÂÂÂÂÂÂÂ err = vmemmap_populate_basepages(start, end, node, NULL);
>> ÂÂÂÂÂ else if (boot_cpu_has(X86_FEATURE_PSE))
>> ÂÂÂÂÂÂÂÂÂ err = vmemmap_populate_hugepages(start, end, node, altmap);
>> ÂÂÂÂÂ else if (altmap) {
>> @@ -1491,7 +1491,7 @@ int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ __func__);
>> ÂÂÂÂÂÂÂÂÂ err = -ENOMEM;
>> ÂÂÂÂÂ } else
>> -ÂÂÂÂÂÂÂ err = vmemmap_populate_basepages(start, end, node);
>> +ÂÂÂÂÂÂÂ err = vmemmap_populate_basepages(start, end, node, NULL);
>> ÂÂÂÂÂ if (!err)
>> ÂÂÂÂÂÂÂÂÂ sync_global_pgds(start, end - 1);
>> ÂÂÂÂÂ return err;
>> diff --git a/include/linux/mm.h b/include/linux/mm.h
>> index 52269e56c514..42f99c8d63c0 100644
>> --- a/include/linux/mm.h
>> +++ b/include/linux/mm.h
>> @@ -2780,14 +2780,15 @@ pgd_t *vmemmap_pgd_populate(unsigned long addr, int node);
>> Â p4d_t *vmemmap_p4d_populate(pgd_t *pgd, unsigned long addr, int node);
>> Â pud_t *vmemmap_pud_populate(p4d_t *p4d, unsigned long addr, int node);
>> Â pmd_t *vmemmap_pmd_populate(pud_t *pud, unsigned long addr, int node);
>> -pte_t *vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node);
>> +pte_t *vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node,
>> +ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ struct vmem_altmap *altmap);
>> Â void *vmemmap_alloc_block(unsigned long size, int node);
>> Â struct vmem_altmap;
>> Â void *vmemmap_alloc_block_buf(unsigned long size, int node);
>> Â void *altmap_alloc_block_buf(unsigned long size, struct vmem_altmap *altmap);
>> Â void vmemmap_verify(pte_t *, int, unsigned long, unsigned long);
>> Â int vmemmap_populate_basepages(unsigned long start, unsigned long end,
>> -ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ int node);
>> +ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ int node, struct vmem_altmap *altmap);
>> Â int vmemmap_populate(unsigned long start, unsigned long end, int node,
>> ÂÂÂÂÂÂÂÂÂ struct vmem_altmap *altmap);
>> Â void vmemmap_populate_print_last(void);
>> diff --git a/mm/sparse-vmemmap.c b/mm/sparse-vmemmap.c
>> index 200aef686722..a407abc9b46c 100644
>> --- a/mm/sparse-vmemmap.c
>> +++ b/mm/sparse-vmemmap.c
>> @@ -140,12 +140,18 @@ void __meminit vmemmap_verify(pte_t *pte, int node,
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂ start, end - 1);
>> Â }
>> Â -pte_t * __meminit vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node)
>> +pte_t * __meminit vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node,
>> +ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ struct vmem_altmap *altmap)
>> Â {
>> ÂÂÂÂÂ pte_t *pte = pte_offset_kernel(pmd, addr);
>> ÂÂÂÂÂ if (pte_none(*pte)) {
>> ÂÂÂÂÂÂÂÂÂ pte_t entry;
>> -ÂÂÂÂÂÂÂ void *p = vmemmap_alloc_block_buf(PAGE_SIZE, node);
>> +ÂÂÂÂÂÂÂ void *p;
>> +
>> +ÂÂÂÂÂÂÂ if (altmap)
>> +ÂÂÂÂÂÂÂÂÂÂÂ p = altmap_alloc_block_buf(PAGE_SIZE, altmap);
>> +ÂÂÂÂÂÂÂ else
>> +ÂÂÂÂÂÂÂÂÂÂÂ p = vmemmap_alloc_block_buf(PAGE_SIZE, node);
>
> This pattern ends up appearing a number of times by the end - if we do go down the generic code route, might it be worth pushing it down into vmmemmap_alloc_block_buf() itself to make it automatic? (possibly even including the powerpc fallback behaviour too?)

Yes, this pattern is now there in couple of more places. Sure, will change
vmemmap_alloc_block_buf() to handle altmap with a fallback request.

Something like this (not tested properly)

---------------------------------------------------
From: Anshuman Khandual <anshuman.khandual@xxxxxxx>
Date: Tue, 24 Mar 2020 07:35:47 +0000
Subject: [PATCH] mm/sparse: Enable vmemmap_alloc_block_buf() for altmap
allocations

There are many instances where vmemap allocation is often switched between
device memory and regular memory based on whether altmap is available or
not. vmemmap_alloc_block_buf() is used in various platforms to allocate
vmemmap. Hence enable it to handle altmap based device memory allocation as
well. While here implement a regular memory allocation fallback mechanism
that is used in powerpc.

Suggested-by: Robin Murphy <robin.murphy@xxxxxxx>
Signed-off-by: Anshuman Khandual <anshuman.khandual@xxxxxxx>
---
arch/arm64/mm/mmu.c | 6 ++----
arch/powerpc/mm/init_64.c | 12 ++++++------
arch/x86/mm/init_64.c | 6 ++----
include/linux/mm.h | 3 ++-
mm/sparse-vmemmap.c | 27 +++++++++++++++++++++------
5 files changed, 33 insertions(+), 21 deletions(-)

diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c
index 88c5b357013b..45f09935c160 100644
--- a/arch/arm64/mm/mmu.c
+++ b/arch/arm64/mm/mmu.c
@@ -1080,10 +1080,8 @@ int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
if (pmd_none(READ_ONCE(*pmdp))) {
void *p = NULL;

- if (altmap)
- p = altmap_alloc_block_buf(PMD_SIZE, altmap);
- else
- p = vmemmap_alloc_block_buf(PMD_SIZE, node);
+ p = vmemmap_alloc_block_buf(PMD_SIZE, node,
+ altmap, false);
if (!p)
return -ENOMEM;

diff --git a/arch/powerpc/mm/init_64.c b/arch/powerpc/mm/init_64.c
index 4002ced3596f..31995eb4b62a 100644
--- a/arch/powerpc/mm/init_64.c
+++ b/arch/powerpc/mm/init_64.c
@@ -150,7 +150,7 @@ static __meminit struct vmemmap_backing * vmemmap_list_alloc(int node)

/* allocate a page when required and hand out chunks */
if (!num_left) {
- next = vmemmap_alloc_block(PAGE_SIZE, node);
+ next = vmemmap_alloc_block(PAGE_SIZE, node, NULL, false);
if (unlikely(!next)) {
WARN_ON(1);
return NULL;
@@ -226,12 +226,12 @@ int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
* fall back to system memory if the altmap allocation fail.
*/
if (altmap && !altmap_cross_boundary(altmap, start, page_size)) {
- p = altmap_alloc_block_buf(page_size, altmap);
- if (!p)
- pr_debug("altmap block allocation failed, falling back to system memory");
+ p = vmemmap_alloc_block_buf(page_size, node,
+ altmap, true);
+ } else {
+ p = vmemmap_alloc_block_buf(page_size, node,
+ NULL, false);
}
- if (!p)
- p = vmemmap_alloc_block_buf(page_size, node);
if (!p)
return -ENOMEM;

diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index c22677571619..35cc0c9d9578 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -1444,10 +1444,8 @@ static int __meminit vmemmap_populate_hugepages(unsigned long start,
if (pmd_none(*pmd)) {
void *p;

- if (altmap)
- p = altmap_alloc_block_buf(PMD_SIZE, altmap);
- else
- p = vmemmap_alloc_block_buf(PMD_SIZE, node);
+ p = vmemmap_alloc_block_buf(PMD_SIZE, node,
+ altmap, false);
if (p) {
pte_t entry;

diff --git a/include/linux/mm.h b/include/linux/mm.h
index 4a987d173488..a2cb9c669800 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -2994,7 +2994,8 @@ pte_t *vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node,
struct vmem_altmap *altmap);
void *vmemmap_alloc_block(unsigned long size, int node);
struct vmem_altmap;
-void *vmemmap_alloc_block_buf(unsigned long size, int node);
+void *vmemmap_alloc_block_buf(unsigned long size, int node,
+ struct vmem_altmap *altmap, bool fallback);
void *altmap_alloc_block_buf(unsigned long size, struct vmem_altmap *altmap);
void vmemmap_verify(pte_t *, int, unsigned long, unsigned long);
int vmemmap_populate_basepages(unsigned long start, unsigned long end,
diff --git a/mm/sparse-vmemmap.c b/mm/sparse-vmemmap.c
index a407abc9b46c..f502fcdf539f 100644
--- a/mm/sparse-vmemmap.c
+++ b/mm/sparse-vmemmap.c
@@ -71,10 +71,28 @@ void * __meminit vmemmap_alloc_block(unsigned long size, int node)
}

/* need to make sure size is all the same during early stage */
-void * __meminit vmemmap_alloc_block_buf(unsigned long size, int node)
+void * __meminit vmemmap_alloc_block_buf(unsigned long size, int node,
+ struct vmem_altmap *altmap,
+ bool fallback)
{
- void *ptr = sparse_buffer_alloc(size);
+ void *ptr;

+ /*
+ * There is no point in asking for fallback without
+ * an altmap request to begin with. Just warn here
+ * to catch potential call sites violating this.
+ */
+ WARN_ON(!altmap && fallback);
+
+ if (altmap) {
+ ptr = altmap_alloc_block_buf(size, altmap);
+ if (!ptr && !fallback)
+ return NULL;
+ pr_debug("altmap block allocation failed,\
+ falling back to system memory");
+ }
+
+ ptr = sparse_buffer_alloc(size);
if (!ptr)
ptr = vmemmap_alloc_block(size, node);
return ptr;
@@ -148,10 +166,7 @@ pte_t * __meminit vmemmap_pte_populate(pmd_t *pmd, unsigned long addr, int node,
pte_t entry;
void *p;

- if (altmap)
- p = altmap_alloc_block_buf(PAGE_SIZE, altmap);
- else
- p = vmemmap_alloc_block_buf(PAGE_SIZE, node);
+ p = vmemmap_alloc_block_buf(PAGE_SIZE, node, altmap, false);
if (!p)
return NULL;
entry = pfn_pte(__pa(p) >> PAGE_SHIFT, PAGE_KERNEL);
--
2.20.1



>
> Robin.
>
>> ÂÂÂÂÂÂÂÂÂ if (!p)
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂ return NULL;
>> ÂÂÂÂÂÂÂÂÂ entry = pfn_pte(__pa(p) >> PAGE_SHIFT, PAGE_KERNEL);
>> @@ -213,8 +219,8 @@ pgd_t * __meminit vmemmap_pgd_populate(unsigned long addr, int node)
>> ÂÂÂÂÂ return pgd;
>> Â }
>> Â -int __meminit vmemmap_populate_basepages(unsigned long start,
>> -ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ unsigned long end, int node)
>> +int __meminit vmemmap_populate_basepages(unsigned long start, unsigned long end,
>> +ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ int node, struct vmem_altmap *altmap)
>> Â {
>> ÂÂÂÂÂ unsigned long addr = start;
>> ÂÂÂÂÂ pgd_t *pgd;
>> @@ -236,7 +242,7 @@ int __meminit vmemmap_populate_basepages(unsigned long start,
>> ÂÂÂÂÂÂÂÂÂ pmd = vmemmap_pmd_populate(pud, addr, node);
>> ÂÂÂÂÂÂÂÂÂ if (!pmd)
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂ return -ENOMEM;
>> -ÂÂÂÂÂÂÂ pte = vmemmap_pte_populate(pmd, addr, node);
>> +ÂÂÂÂÂÂÂ pte = vmemmap_pte_populate(pmd, addr, node, altmap);
>> ÂÂÂÂÂÂÂÂÂ if (!pte)
>> ÂÂÂÂÂÂÂÂÂÂÂÂÂ return -ENOMEM;
>> ÂÂÂÂÂÂÂÂÂ vmemmap_verify(pte, node, addr, addr + PAGE_SIZE);
>>
>
> ----->8-----
> From: Robin Murphy <robin.murphy@xxxxxxx>
> Subject: [PATCH] arm64/mm: Consolidate vmemmap_populate()
>
> Since we already have a custom vmemmap_populate() implementation, fold
> the non-section-map case into that as well, so that we can easily add
> altmap support for both cases without having to mess with core code.
>
> Signed-off-by: Robin Murphy <robin.murphy@xxxxxxx>
> ---
> Âarch/arm64/mm/mmu.c | 34 +++++++++++++++++++++-------------
> Â1 file changed, 21 insertions(+), 13 deletions(-)
>
> diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c
> index 128f70852bf3..e250fd414b2b 100644
> --- a/arch/arm64/mm/mmu.c
> +++ b/arch/arm64/mm/mmu.c
> @@ -725,13 +725,6 @@ int kern_addr_valid(unsigned long addr)
> ÂÂÂÂ return pfn_valid(pte_pfn(pte));
> Â}
> Â#ifdef CONFIG_SPARSEMEM_VMEMMAP
> -#if !ARM64_SWAPPER_USES_SECTION_MAPS
> -int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
> -ÂÂÂÂÂÂÂ struct vmem_altmap *altmap)
> -{
> -ÂÂÂ return vmemmap_populate_basepages(start, end, node);
> -}
> -#elseÂÂÂ /* !ARM64_SWAPPER_USES_SECTION_MAPS */
> Âint __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
> ÂÂÂÂÂÂÂÂ struct vmem_altmap *altmap)
> Â{
> @@ -740,6 +733,7 @@ int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
> ÂÂÂÂ pgd_t *pgdp;
> ÂÂÂÂ pud_t *pudp;
> ÂÂÂÂ pmd_t *pmdp;
> +ÂÂÂ pte_t *ptep;
>
> ÂÂÂÂ do {
> ÂÂÂÂÂÂÂÂ next = pmd_addr_end(addr, end);
> @@ -752,22 +746,36 @@ int __meminit vmemmap_populate(unsigned long start, unsigned long end, int node,
> ÂÂÂÂÂÂÂÂ if (!pudp)
> ÂÂÂÂÂÂÂÂÂÂÂÂ return -ENOMEM;
>
> +#if ARM64_SWAPPER_USES_SECTION_MAPS
> ÂÂÂÂÂÂÂÂ pmdp = pmd_offset(pudp, addr);
> ÂÂÂÂÂÂÂÂ if (pmd_none(READ_ONCE(*pmdp))) {
> -ÂÂÂÂÂÂÂÂÂÂÂ void *p = NULL;
> -
> -ÂÂÂÂÂÂÂÂÂÂÂ p = vmemmap_alloc_block_buf(PMD_SIZE, node);
> +ÂÂÂÂÂÂÂÂÂÂÂ void *p = vmemmap_alloc_block_buf(PMD_SIZE, node);
> ÂÂÂÂÂÂÂÂÂÂÂÂ if (!p)
> ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ return -ENOMEM;
>
> ÂÂÂÂÂÂÂÂÂÂÂÂ pmd_set_huge(pmdp, __pa(p), __pgprot(PROT_SECT_NORMAL));
> -ÂÂÂÂÂÂÂ } else
> -ÂÂÂÂÂÂÂÂÂÂÂ vmemmap_verify((pte_t *)pmdp, node, addr, next);
> +ÂÂÂÂÂÂÂÂÂÂÂ continue;
> +ÂÂÂÂÂÂÂ }
> +#else
> +ÂÂÂÂÂÂÂ pmdp = vmemmap_pmd_populate(pmdp, addr, node);
> +ÂÂÂÂÂÂÂ if (!pmdp)
> +ÂÂÂÂÂÂÂÂÂÂÂ return -ENOMEM;
> +
> +ÂÂÂÂÂÂÂ ptep = pte_offset_kernel(pmdp, addr);
> +ÂÂÂÂÂÂÂ if (pte_none(READ_ONCE(*ptep))) {
> +ÂÂÂÂÂÂÂÂÂÂÂ void *p = vmemmap_alloc_block_buf(PAGE_SIZE, node);
> +ÂÂÂÂÂÂÂÂÂÂÂ if (!p)
> +ÂÂÂÂÂÂÂÂÂÂÂÂÂÂÂ return -ENOMEM;
> +
> +ÂÂÂÂÂÂÂÂÂÂÂ set_pte(ptep, pfn_pte(__pa(p) >> PAGE_SHIFT, PAGE_KERNEL));
> +ÂÂÂÂÂÂÂ }
> +#endif
> +ÂÂÂÂÂÂÂ vmemmap_verify((pte_t *)pmdp, node, addr, next);
> ÂÂÂÂ } while (addr = next, addr != end);
>
> ÂÂÂÂ return 0;
> Â}
> -#endifÂÂÂ /* !ARM64_SWAPPER_USES_SECTION_MAPS */
> +
> Âvoid vmemmap_free(unsigned long start, unsigned long end,
> ÂÂÂÂÂÂÂÂ struct vmem_altmap *altmap)
> Â{
>
>