Searched defs:pgd (Results 1 - 5 of 5) sorted by relevance

/include/asm-generic/
H A Dpgtable-nopud.h9 * Having the pud type consist of a pgd gets the size right, and allows
10 * us to conceptually access the pgd entry that this pud is folded into
13 typedef struct { pgd_t pgd; } pud_t; member in struct:__anon24
23 * into the pgd entry)
25 static inline int pgd_none(pgd_t pgd) { return 0; } argument
26 static inline int pgd_bad(pgd_t pgd) { return 0; } argument
27 static inline int pgd_present(pgd_t pgd) { return 1; } argument
28 static inline void pgd_clear(pgd_t *pgd) { } argument
29 #define pud_ERROR(pud) (pgd_ERROR((pud).pgd))
31 #define pgd_populate(mm, pgd, pu
38 pud_offset(pgd_t * pgd, unsigned long address) argument
[all...]
H A Dpage.h46 unsigned long pgd; member in struct:__anon20
55 #define pgd_val(x) ((x).pgd)
H A Dpgtable.h256 static inline int pgd_none_or_clear_bad(pgd_t *pgd) argument
258 if (pgd_none(*pgd))
260 if (unlikely(pgd_bad(*pgd))) {
261 pgd_clear_bad(pgd);
/include/linux/
H A Dmm_types.h312 pgd_t * pgd; member in struct:mm_struct
H A Dmm.h1156 static inline int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, argument
1162 int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address);
1184 static inline pud_t *pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address) argument
1186 return (unlikely(pgd_none(*pgd)) && __pud_alloc(mm, pgd, address))?
1187 NULL: pud_offset(pgd, address);
1584 pud_t *vmemmap_pud_populate(pgd_t *pgd, unsigned long addr, int node);

Completed in 104 milliseconds