Symbol: _PAGE_HUGE
arch/loongarch/include/asm/kvm_mmu.h
63
static inline int kvm_pte_huge(kvm_pte_t pte) { return pte & _PAGE_HUGE; }
arch/loongarch/include/asm/kvm_mmu.h
89
return pte | _PAGE_HUGE;
arch/loongarch/include/asm/kvm_mmu.h
94
return pte & ~_PAGE_HUGE;
arch/loongarch/include/asm/pgtable-bits.h
110
#define _HPAGE_CHG_MASK (_PAGE_MODIFIED | _PAGE_SPECIAL | _PFN_MASK | _CACHE_MASK | _PAGE_PLV | _PAGE_HUGE)
arch/loongarch/include/asm/pgtable.h
241
if (unlikely(pmd_val(pmd) & _PAGE_HUGE))
arch/loongarch/include/asm/pgtable.h
327
#define __swp_entry_to_pmd(x) __pmd((x).val | _PAGE_HUGE)
arch/loongarch/include/asm/pgtable.h
424
static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
arch/loongarch/include/asm/pgtable.h
428
pte_val(pte) |= _PAGE_HUGE;
arch/loongarch/include/asm/pgtable.h
498
return !!(pmd_val(pmd) & _PAGE_HUGE) && pmd_present(pmd);
arch/loongarch/include/asm/pgtable.h
505
pmd_val(pmd) |= _PAGE_HUGE;
arch/loongarch/include/asm/pgtable.h
622
#define pmd_leaf(pmd) ((pmd_val(pmd) & _PAGE_HUGE) != 0)
arch/loongarch/include/asm/pgtable.h
623
#define pud_leaf(pud) ((pud_val(pud) & _PAGE_HUGE) != 0)
arch/loongarch/mm/hugetlbpage.c
61
val = pmd_val ^ _PAGE_HUGE;
arch/loongarch/mm/init.c
109
pmd_val(entry) |= _PAGE_HUGE | _PAGE_HGLOBAL;
arch/loongarch/mm/init.c
116
int huge = pmd_val(pmdp_get(pmd)) & _PAGE_HUGE;
arch/loongarch/mm/tlb.c
180
if (pte_val(*ptep) & _PAGE_HUGE) {
arch/mips/include/asm/pgtable-32.h
133
if (unlikely(pmd_val(pmd) & _PAGE_HUGE))
arch/mips/include/asm/pgtable-64.h
249
if (unlikely(pmd_val(pmd) & _PAGE_HUGE))
arch/mips/include/asm/pgtable-64.h
262
if (unlikely(pmd_val(pmd) & _PAGE_HUGE))
arch/mips/include/asm/pgtable.h
404
static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
arch/mips/include/asm/pgtable.h
408
pte_val(pte) |= _PAGE_HUGE;
arch/mips/include/asm/pgtable.h
420
if (pmd_val(pmd) & _PAGE_HUGE)
arch/mips/include/asm/pgtable.h
623
return !!(pmd_val(pmd) & _PAGE_HUGE);
arch/mips/include/asm/pgtable.h
628
pmd_val(pmd) |= _PAGE_HUGE;
arch/mips/include/asm/pgtable.h
717
pmd_val(pmd) = (pmd_val(pmd) & (_PAGE_CHG_MASK | _PAGE_HUGE)) |
arch/mips/include/asm/pgtable.h
746
#ifdef _PAGE_HUGE
arch/mips/include/asm/pgtable.h
747
#define pmd_leaf(pmd) ((pmd_val(pmd) & _PAGE_HUGE) != 0)
arch/mips/include/asm/pgtable.h
748
#define pud_leaf(pud) ((pud_val(pud) & _PAGE_HUGE) != 0)
arch/mips/mm/tlbex.c
1178
uasm_il_bbit1(p, r, scratch, ilog2(_PAGE_HUGE), label_tlb_huge_update);
arch/mips/mm/tlbex.c
1438
psn = ilog2(_PAGE_HUGE); /* bit used to indicate huge page */
arch/mips/mm/tlbex.c
683
uasm_il_bbit1(p, r, tmp, ilog2(_PAGE_HUGE), lid);
arch/mips/mm/tlbex.c
685
uasm_i_andi(p, tmp, tmp, _PAGE_HUGE);
arch/parisc/include/asm/pgtable.h
321
#define pte_huge(pte) (pte_val(pte) & _PAGE_HUGE)
arch/parisc/include/asm/pgtable.h
323
(parisc_requires_coherency() ? 0 : _PAGE_HUGE)))
arch/powerpc/include/asm/nohash/32/hugetlb-8xx.h
55
return __pte(pte_val(entry) | _PAGE_SPS | _PAGE_HUGE);
arch/powerpc/include/asm/nohash/32/pte-8xx.h
117
return __pte(pte_val(pte) | _PAGE_SPS | _PAGE_HUGE);
arch/powerpc/include/asm/nohash/32/pte-8xx.h
150
if (val & _PAGE_HUGE)
arch/powerpc/include/asm/nohash/32/pte-8xx.h
181
else if (IS_ENABLED(CONFIG_PPC_4K_PAGES) && !(val & _PAGE_HUGE))
arch/powerpc/mm/ptdump/8xx.c
15
.mask = _PAGE_HUGE,
arch/powerpc/mm/ptdump/8xx.c
16
.val = _PAGE_HUGE,