Searched refs:pgd (Results 1 - 25 of 239) sorted by relevance

12345678910

/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390/
H A Dmmu_context.h27 unsigned long pgd; local
30 pgd = (__pa(next->pgd)&PAGE_MASK) |
35 : : "m" (pgd) );
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-s390x/
H A Dmmu_context.h27 unsigned long pgd; local
30 pgd = (__pa(next->pgd)&PAGE_MASK) | (_REGION_TABLE|USER_STD_MASK);
34 : : "m" (pgd) );
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390/
H A Dmmu_context.h27 unsigned long pgd; local
30 pgd = (__pa(next->pgd)&PAGE_MASK) |
35 : : "m" (pgd) );
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-s390x/
H A Dmmu_context.h27 unsigned long pgd; local
30 pgd = (__pa(next->pgd)&PAGE_MASK) | (_REGION_TABLE|USER_STD_MASK);
34 : : "m" (pgd) );
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/
H A Dpgalloc.h53 #define __pgd_next(pgd) (((unsigned long *)pgd)[1])
69 static inline void free_pgd_fast(pgd_t *pgd) argument
71 __pgd_next(pgd) = (unsigned long) pgd_quicklist;
72 pgd_quicklist = (unsigned long *) pgd;
105 #define free_pgd_fast(pgd) free_pgd_slow(pgd)
124 extern void free_pgd_slow(pgd_t *pgd);
128 pgd_t *pgd; local
130 pgd
[all...]
H A Dcpu-multi26.h29 void (*_set_pgd)(pgd_t *pgd);
43 #define cpu_switch_mm(pgd,tsk) processor._set_pgd(pgd)
47 extern void cpu_memc_update_all(pgd_t *pgd);
48 extern void cpu_memc_update_entry(pgd_t *pgd, unsigned long phys_pte, unsigned long log_addr);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/
H A Dpgalloc.h53 #define __pgd_next(pgd) (((unsigned long *)pgd)[1])
69 static inline void free_pgd_fast(pgd_t *pgd) argument
71 __pgd_next(pgd) = (unsigned long) pgd_quicklist;
72 pgd_quicklist = (unsigned long *) pgd;
105 #define free_pgd_fast(pgd) free_pgd_slow(pgd)
124 extern void free_pgd_slow(pgd_t *pgd);
128 pgd_t *pgd; local
130 pgd
[all...]
H A Dcpu-multi26.h29 void (*_set_pgd)(pgd_t *pgd);
43 #define cpu_switch_mm(pgd,tsk) processor._set_pgd(pgd)
47 extern void cpu_memc_update_all(pgd_t *pgd);
48 extern void cpu_memc_update_entry(pgd_t *pgd, unsigned long phys_pte, unsigned long log_addr);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-i386/
H A Dpgalloc.h35 pgd_t *pgd = kmem_cache_alloc(pae_pgd_cachep, GFP_KERNEL); local
37 if (pgd) {
43 set_pgd(pgd + i, __pgd(1 + __pa(pmd)));
45 memcpy(pgd + USER_PTRS_PER_PGD,
49 return pgd;
52 free_page((unsigned long)__va(pgd_val(pgd[i])-1));
53 kmem_cache_free(pae_pgd_cachep, pgd);
61 pgd_t *pgd = (pgd_t *)__get_free_page(GFP_KERNEL); local
63 if (pgd) {
64 memset(pgd,
87 free_pgd_fast(pgd_t *pgd) argument
94 free_pgd_slow(pgd_t *pgd) argument
[all...]
H A Dpgtable-2level.h25 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
29 * setup: the pgd is never bad, and a pmd always exists (as it's folded
30 * into the pgd entry)
32 static inline int pgd_none(pgd_t pgd) { return 0; } argument
33 static inline int pgd_bad(pgd_t pgd) { return 0; } argument
34 static inline int pgd_present(pgd_t pgd) { return 1; } argument
52 #define pgd_page(pgd) \
53 ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
H A Dpgtable-3level.h34 printk("%s:%d: bad pgd %p(%016Lx).\n", __FILE__, __LINE__, &(e), pgd_val(e))
36 static inline int pgd_none(pgd_t pgd) { return 0; } argument
37 static inline int pgd_bad(pgd_t pgd) { return 0; } argument
38 static inline int pgd_present(pgd_t pgd) { return 1; } argument
62 * the TLB via cr3 if the top-level pgd is changed...
63 * We do not let the generic code free and clear pgd entries due to
66 static inline void pgd_clear (pgd_t * pgd) { } argument
68 #define pgd_page(pgd) \
69 ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-i386/
H A Dpgalloc.h35 pgd_t *pgd = kmem_cache_alloc(pae_pgd_cachep, GFP_KERNEL); local
37 if (pgd) {
43 set_pgd(pgd + i, __pgd(1 + __pa(pmd)));
45 memcpy(pgd + USER_PTRS_PER_PGD,
49 return pgd;
52 free_page((unsigned long)__va(pgd_val(pgd[i])-1));
53 kmem_cache_free(pae_pgd_cachep, pgd);
61 pgd_t *pgd = (pgd_t *)__get_free_page(GFP_KERNEL); local
63 if (pgd) {
64 memset(pgd,
87 free_pgd_fast(pgd_t *pgd) argument
94 free_pgd_slow(pgd_t *pgd) argument
[all...]
H A Dpgtable-2level.h25 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
29 * setup: the pgd is never bad, and a pmd always exists (as it's folded
30 * into the pgd entry)
32 static inline int pgd_none(pgd_t pgd) { return 0; } argument
33 static inline int pgd_bad(pgd_t pgd) { return 0; } argument
34 static inline int pgd_present(pgd_t pgd) { return 1; } argument
52 #define pgd_page(pgd) \
53 ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-sh/
H A Dpgtable-2level.h26 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
30 * setup: the pgd is never bad, and a pmd always exists (as it's folded
31 * into the pgd entry)
33 static inline int pgd_none(pgd_t pgd) { return 0; } argument
34 static inline int pgd_bad(pgd_t pgd) { return 0; } argument
35 static inline int pgd_present(pgd_t pgd) { return 1; } argument
51 #define pgd_page(pgd) \
52 ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-sh/
H A Dpgtable-2level.h26 printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
30 * setup: the pgd is never bad, and a pmd always exists (as it's folded
31 * into the pgd entry)
33 static inline int pgd_none(pgd_t pgd) { return 0; } argument
34 static inline int pgd_bad(pgd_t pgd) { return 0; } argument
35 static inline int pgd_present(pgd_t pgd) { return 1; } argument
51 #define pgd_page(pgd) \
52 ((unsigned long) __va(pgd_val(pgd) & PAGE_MASK))
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ppc64/
H A Dpgalloc.h40 pgd_t *pgd = pgd_alloc_one_fast(mm); local
42 if (pgd == NULL) {
43 pgd = (pgd_t *)__get_free_page(GFP_KERNEL);
44 if (pgd != NULL)
45 clear_page(pgd);
47 return pgd;
51 pgd_free (pgd_t *pgd) argument
53 *(unsigned long *)pgd = (unsigned long) pgd_quicklist;
54 pgd_quicklist = (unsigned long *) pgd;
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ppc64/
H A Dpgalloc.h40 pgd_t *pgd = pgd_alloc_one_fast(mm); local
42 if (pgd == NULL) {
43 pgd = (pgd_t *)__get_free_page(GFP_KERNEL);
44 if (pgd != NULL)
45 clear_page(pgd);
47 return pgd;
51 pgd_free (pgd_t *pgd) argument
53 *(unsigned long *)pgd = (unsigned long) pgd_quicklist;
54 pgd_quicklist = (unsigned long *) pgd;
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/proc-armo/
H A Dcache.h52 cpu_memc_update_all(init_mm.pgd);
56 cpu_memc_update_all(p->mm->pgd);
58 processor._set_pgd(current->active_mm->pgd);
63 cpu_memc_update_all(mm->pgd);
66 processor._set_pgd(mm->pgd);
72 cpu_memc_update_entry(mm->pgd, (unsigned long) page_address(page), 0);
75 processor._set_pgd(mm->pgd);
81 cpu_memc_update_entry(mm->pgd, pte_val(pte), vaddr);
84 processor._set_pgd(mm->pgd);
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/proc-armo/
H A Dcache.h52 cpu_memc_update_all(init_mm.pgd);
56 cpu_memc_update_all(p->mm->pgd);
58 processor._set_pgd(current->active_mm->pgd);
63 cpu_memc_update_all(mm->pgd);
66 processor._set_pgd(mm->pgd);
72 cpu_memc_update_entry(mm->pgd, (unsigned long) page_address(page), 0);
75 processor._set_pgd(mm->pgd);
81 cpu_memc_update_entry(mm->pgd, pte_val(pte), vaddr);
84 processor._set_pgd(mm->pgd);
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-cris/
H A Dpgalloc.h36 extern __inline__ void free_pgd_slow(pgd_t *pgd) argument
38 free_page((unsigned long)pgd);
54 extern __inline__ void free_pgd_fast(pgd_t *pgd) argument
56 *(unsigned long *)pgd = (unsigned long) pgd_quicklist;
57 pgd_quicklist = (unsigned long *) pgd;
96 #define pgd_free(pgd) free_pgd_slow(pgd)
101 * the pgd will always be present..
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-cris/
H A Dpgalloc.h36 extern __inline__ void free_pgd_slow(pgd_t *pgd) argument
38 free_page((unsigned long)pgd);
54 extern __inline__ void free_pgd_fast(pgd_t *pgd) argument
56 *(unsigned long *)pgd = (unsigned long) pgd_quicklist;
57 pgd_quicklist = (unsigned long *) pgd;
96 #define pgd_free(pgd) free_pgd_slow(pgd)
101 * the pgd will always be present..
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-m68k/
H A Dmotorola_pgalloc.h19 extern pmd_t *get_pmd_slow(pgd_t *pgd, unsigned long offset);
115 /* The pgd cache is folded into the pmd cache, so these are dummy routines. */
121 extern inline void free_pgd_fast(pgd_t *pgd) argument
125 extern inline void free_pgd_slow(pgd_t *pgd) argument
130 extern void __bad_pmd(pgd_t *pgd);
158 extern inline pmd_t *pmd_alloc_kernel(pgd_t *pgd, unsigned long address) argument
160 return pmd_alloc(&init_mm,pgd, address);
163 extern inline void pgd_free(pgd_t *pgd) argument
165 free_pmd_fast((pmd_t *)pgd);
170 pgd_t *pgd local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-m68k/
H A Dmotorola_pgalloc.h19 extern pmd_t *get_pmd_slow(pgd_t *pgd, unsigned long offset);
115 /* The pgd cache is folded into the pmd cache, so these are dummy routines. */
121 extern inline void free_pgd_fast(pgd_t *pgd) argument
125 extern inline void free_pgd_slow(pgd_t *pgd) argument
130 extern void __bad_pmd(pgd_t *pgd);
158 extern inline pmd_t *pmd_alloc_kernel(pgd_t *pgd, unsigned long address) argument
160 return pmd_alloc(&init_mm,pgd, address);
163 extern inline void pgd_free(pgd_t *pgd) argument
165 free_pmd_fast((pmd_t *)pgd);
170 pgd_t *pgd local
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-x86_64/
H A Dpgalloc.h17 #define pgd_populate(mm, pgd, pmd) \
18 set_pgd(pgd, __pgd(_PAGE_TABLE | __pa(pmd)))
84 pgd_t *pgd = pgd_alloc_one_fast(); local
86 if (pgd == NULL)
87 pgd = (pgd_t *)get_zeroed_page(GFP_KERNEL);
88 return pgd;
91 static inline void pgd_free (pgd_t *pgd) argument
93 *(unsigned long *)pgd = (unsigned long) read_pda(pgd_quick);
94 write_pda(pgd_quick,(unsigned long *) pgd);
99 static inline void pgd_free_slow (pgd_t *pgd) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-x86_64/
H A Dpgalloc.h17 #define pgd_populate(mm, pgd, pmd) \
18 set_pgd(pgd, __pgd(_PAGE_TABLE | __pa(pmd)))
84 pgd_t *pgd = pgd_alloc_one_fast(); local
86 if (pgd == NULL)
87 pgd = (pgd_t *)get_zeroed_page(GFP_KERNEL);
88 return pgd;
91 static inline void pgd_free (pgd_t *pgd) argument
93 *(unsigned long *)pgd = (unsigned long) read_pda(pgd_quick);
94 write_pda(pgd_quick,(unsigned long *) pgd);
99 static inline void pgd_free_slow (pgd_t *pgd) argument
[all...]

Completed in 192 milliseconds

12345678910