Symbol: pgd_alloc
arch/alpha/include/asm/pgalloc.h
34
extern pgd_t *pgd_alloc(struct mm_struct *mm);
arch/arm/include/asm/pgalloc.h
47
extern pgd_t *pgd_alloc(struct mm_struct *mm);
arch/arm/mm/idmap.c
114
idmap_pgd = pgd_alloc(&init_mm);
arch/arm64/include/asm/pgalloc.h
95
extern pgd_t *pgd_alloc(struct mm_struct *mm);
arch/loongarch/include/asm/pgalloc.h
46
extern pgd_t *pgd_alloc(struct mm_struct *mm);
arch/loongarch/mm/pgtable.c
38
EXPORT_SYMBOL_GPL(pgd_alloc);
arch/mips/include/asm/pgalloc.h
49
extern pgd_t *pgd_alloc(struct mm_struct *mm);
arch/mips/mm/pgtable.c
25
EXPORT_SYMBOL_GPL(pgd_alloc);
arch/nios2/include/asm/pgalloc.h
29
extern pgd_t *pgd_alloc(struct mm_struct *mm);
arch/powerpc/kvm/book3s_64_mmu_radix.c
1227
kvm->arch.pgtable = pgd_alloc(kvm->mm);
arch/powerpc/kvm/book3s_hv_nested.c
735
gp->shadow_pgtable = pgd_alloc(kvm->mm);
arch/sh/include/asm/pgalloc.h
13
extern pgd_t *pgd_alloc(struct mm_struct *);
arch/um/include/asm/pgalloc.h
26
extern pgd_t *pgd_alloc(struct mm_struct *);
arch/x86/include/asm/paravirt.h
289
return PVOP_CALL1(int, pv_ops, mmu.pgd_alloc, mm);
arch/x86/include/asm/paravirt_types.h
130
int (*pgd_alloc)(struct mm_struct *mm);
arch/x86/include/asm/pgalloc.h
49
extern pgd_t *pgd_alloc(struct mm_struct *);
arch/x86/kernel/paravirt.c
167
.mmu.pgd_alloc = __paravirt_pgd_alloc,
arch/x86/kernel/tboot.c
155
tboot_pg_dir = pgd_alloc(&tboot_mm);
arch/x86/xen/mmu_pv.c
2202
pv_ops.mmu.pgd_alloc = xen_pgd_alloc;
drivers/firmware/efi/arm-runtime.c
56
efi_mm.pgd = pgd_alloc(&efi_mm);
drivers/firmware/efi/riscv-runtime.c
34
efi_mm.pgd = pgd_alloc(&efi_mm);
kernel/fork.c
577
mm->pgd = pgd_alloc(mm);