]> Git Repo - linux.git/commitdiff
KVM: arm64: Allocate stage-2 pgd pages with GFP_KERNEL_ACCOUNT
authorWill Deacon <[email protected]>
Mon, 26 Oct 2020 14:44:23 +0000 (14:44 +0000)
committerMarc Zyngier <[email protected]>
Thu, 29 Oct 2020 19:49:03 +0000 (19:49 +0000)
For consistency with the rest of the stage-2 page-table page allocations
(performing using a kvm_mmu_memory_cache), ensure that __GFP_ACCOUNT is
included in the GFP flags for the PGD pages.

Signed-off-by: Will Deacon <[email protected]>
Signed-off-by: Marc Zyngier <[email protected]>
Reviewed-by: Gavin Shan <[email protected]>
Cc: Marc Zyngier <[email protected]>
Cc: Quentin Perret <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
arch/arm64/kvm/hyp/pgtable.c

index 0cdf6e461cbd257df4932a40ad23da04385fb47c..95141b0d6088ac092afa111154e59f872fa7dd6b 100644 (file)
@@ -846,7 +846,7 @@ int kvm_pgtable_stage2_init(struct kvm_pgtable *pgt, struct kvm *kvm)
        u32 start_level = VTCR_EL2_TGRAN_SL0_BASE - sl0;
 
        pgd_sz = kvm_pgd_pages(ia_bits, start_level) * PAGE_SIZE;
-       pgt->pgd = alloc_pages_exact(pgd_sz, GFP_KERNEL | __GFP_ZERO);
+       pgt->pgd = alloc_pages_exact(pgd_sz, GFP_KERNEL_ACCOUNT | __GFP_ZERO);
        if (!pgt->pgd)
                return -ENOMEM;
 
This page took 0.057247 seconds and 4 git commands to generate.