Searched defs:p4d (Results 1 – 7 of 7) sorted by relevance
/linux-4.19.296/include/asm-generic/ |
D | 5level-fixup.h | 16 #define pud_alloc(mm, p4d, address) \ argument 22 #define p4d_none(p4d) 0 argument 23 #define p4d_bad(p4d) 0 argument 24 #define p4d_present(p4d) 1 argument 25 #define p4d_ERROR(p4d) do { } while (0) argument 26 #define p4d_clear(p4d) pgd_clear(p4d) argument 27 #define p4d_val(p4d) pgd_val(p4d) argument 28 #define p4d_populate(mm, p4d, pud) pgd_populate(mm, p4d, pud) argument 29 #define p4d_page(p4d) pgd_page(p4d) argument 30 #define p4d_page_vaddr(p4d) pgd_page_vaddr(p4d) argument [all …]
|
D | pgtable-nopud.h | 19 typedef struct { p4d_t p4d; } pud_t; member 31 static inline int p4d_none(p4d_t p4d) { return 0; } in p4d_none() 32 static inline int p4d_bad(p4d_t p4d) { return 0; } in p4d_bad() 33 static inline int p4d_present(p4d_t p4d) { return 1; } in p4d_present() 34 static inline void p4d_clear(p4d_t *p4d) { } in p4d_clear() 37 #define p4d_populate(mm, p4d, pud) do { } while (0) argument 44 static inline pud_t *pud_offset(p4d_t *p4d, unsigned long address) in pud_offset() 52 #define p4d_page(p4d) (pud_page((pud_t){ p4d })) argument 53 #define p4d_page_vaddr(p4d) (pud_page_vaddr((pud_t){ p4d })) argument
|
D | pgtable-nop4d.h | 26 #define p4d_ERROR(p4d) (pgd_ERROR((p4d).pgd)) argument 28 #define pgd_populate(mm, pgd, p4d) do { } while (0) argument
|
D | pgtable.h | 368 #define p4d_access_permitted(p4d, write) \ argument 538 static inline int p4d_none_or_clear_bad(p4d_t *p4d) in p4d_none_or_clear_bad() 1008 static inline int p4d_set_huge(p4d_t *p4d, phys_addr_t addr, pgprot_t prot) in p4d_set_huge() 1012 static inline int p4d_clear_huge(p4d_t *p4d) in p4d_clear_huge() 1025 static inline int p4d_set_huge(p4d_t *p4d, phys_addr_t addr, pgprot_t prot) in p4d_set_huge() 1037 static inline int p4d_clear_huge(p4d_t *p4d) in p4d_clear_huge()
|
/linux-4.19.296/lib/ |
D | ioremap.c | 106 static inline int ioremap_pud_range(p4d_t *p4d, unsigned long addr, in ioremap_pud_range() 136 p4d_t *p4d; in ioremap_p4d_range() local
|
/linux-4.19.296/fs/ |
D | userfaultfd.c | 285 p4d_t *p4d; in userfaultfd_must_wait() local
|
/linux-4.19.296/include/linux/ |
D | mm.h | 1737 static inline int __pud_alloc(struct mm_struct *mm, p4d_t *p4d, in __pud_alloc() 1840 static inline pud_t *pud_alloc(struct mm_struct *mm, p4d_t *p4d, in pud_alloc()
|