Home
last modified time | relevance | path

Searched refs:PGD_TABLE_ORDER (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/arch/mips/include/asm/
H A Dpgtable-64.h88 # define PGD_TABLE_ORDER 0 macro
91 # define PGD_TABLE_ORDER 1 macro
97 #define PGD_TABLE_ORDER 0 macro
103 #define PGD_TABLE_ORDER 1 macro
105 #define PGD_TABLE_ORDER 0 macro
111 #define PGD_TABLE_ORDER 0 macro
116 #define PGD_TABLE_ORDER 0 macro
125 #define PTRS_PER_PGD ((PAGE_SIZE << PGD_TABLE_ORDER) / sizeof(pgd_t))
H A Dpgtable-32.h83 #define PGD_TABLE_ORDER (__PGD_TABLE_ORDER >= 0 ? __PGD_TABLE_ORDER : 0) macro
/openbmc/linux/arch/parisc/include/asm/
H A Dpgalloc.h23 pgd = (pgd_t *) __get_free_pages(GFP_KERNEL, PGD_TABLE_ORDER); in pgd_alloc()
27 memset(pgd, 0, PAGE_SIZE << PGD_TABLE_ORDER); in pgd_alloc()
34 free_pages((unsigned long)pgd, PGD_TABLE_ORDER); in pgd_free()
H A Dpgtable.h97 #define PGD_TABLE_ORDER 0 macro
99 #define PGD_TABLE_ORDER 1 macro
123 #if (PGDIR_SHIFT + PAGE_SHIFT + PGD_TABLE_ORDER - BITS_PER_PGD_ENTRY) > BITS_PER_LONG
126 #define BITS_PER_PGD (PAGE_SHIFT + PGD_TABLE_ORDER - BITS_PER_PGD_ENTRY)
/openbmc/linux/arch/mips/mm/
H A Dpgtable.c15 PGD_TABLE_ORDER); in pgd_alloc()
H A Dtlbex.c802 uasm_i_dsrl_safe(p, ptr, tmp, PGDIR_SHIFT + PGD_TABLE_ORDER + PAGE_SHIFT - 3); in build_get_pmde64()
1095 PGDIR_SHIFT + PGD_TABLE_ORDER + PAGE_SHIFT - 3); in build_fast_tlb_refill_handler()
1461 pgd_w = PGDIR_SHIFT - PMD_SHIFT + PGD_TABLE_ORDER; in setup_pw()
1466 pgd_w = PGDIR_SHIFT - PAGE_SHIFT + PGD_TABLE_ORDER; in setup_pw()
1504 uasm_i_dsrl_safe(&p, K1, K0, PGDIR_SHIFT + PGD_TABLE_ORDER + PAGE_SHIFT - 3); in build_loongson3_tlb_refill_handler()
2563 …check_for_high_segbits = current_cpu_data.vmbits > (PGDIR_SHIFT + PGD_TABLE_ORDER + PAGE_SHIFT - 3… in build_tlb_refill_handler()
/openbmc/linux/arch/mips/kvm/
H A Dmmu.c83 ret = (pgd_t *)__get_free_pages(GFP_KERNEL, PGD_TABLE_ORDER); in kvm_pgd_alloc()