Home
last modified time | relevance | path

Searched refs:_PAGE_SZHUGE (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.4/arch/sh/include/asm/
Dpgtable_32.h138 # define _PAGE_SZHUGE (_PAGE_EXT_ESZ2) macro
140 # define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ2) macro
142 # define _PAGE_SZHUGE (_PAGE_EXT_ESZ0 | _PAGE_EXT_ESZ1 | _PAGE_EXT_ESZ2) macro
144 # define _PAGE_SZHUGE (_PAGE_EXT_ESZ3) macro
146 # define _PAGE_SZHUGE (_PAGE_EXT_ESZ2 | _PAGE_EXT_ESZ3) macro
151 # define _PAGE_SZHUGE (_PAGE_SZ1) macro
153 # define _PAGE_SZHUGE (_PAGE_SZ0 | _PAGE_SZ1) macro
162 #ifndef _PAGE_SZHUGE
163 # define _PAGE_SZHUGE (_PAGE_FLAGS_HARD) macro
363 PTE_BIT_FUNC(high, mkhuge, |= _PAGE_SZHUGE);
[all …]
Dpgtable_64.h138 #define _PAGE_SZHUGE (_PAGE_SIZE0) macro
140 #define _PAGE_SZHUGE (_PAGE_SIZE1) macro
142 #define _PAGE_SZHUGE (_PAGE_SIZE0 | _PAGE_SIZE1) macro
149 #ifndef _PAGE_SZHUGE
150 # define _PAGE_SZHUGE (0) macro
268 static inline pte_t pte_mkhuge(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_SZHUGE)); retu… in pte_mkhuge()