tag | line | file | source code |
pgprot | 188 | arch/sparc/mm/srmmu.c | static pte_t srmmu_mk_pte(unsigned long page, pgprot_t pgprot) |
pgprot | 189 | arch/sparc/mm/srmmu.c | { pte_t pte; pte_val(pte) = ((page - PAGE_OFFSET) >> 4) | pgprot_val(pgprot); return pte; } |
pgprot | 191 | arch/sparc/mm/srmmu.c | static pte_t srmmu_mk_pte_io(unsigned long page, pgprot_t pgprot) |
pgprot | 192 | arch/sparc/mm/srmmu.c | { pte_t pte; pte_val(pte) = ((page) >> 4) | pgprot_val(pgprot); return pte; } |
pgprot | 1161 | arch/sparc/mm/sun4c.c | static pte_t sun4c_mk_pte(unsigned long page, pgprot_t pgprot) |
pgprot | 1163 | arch/sparc/mm/sun4c.c | return __pte(((page - PAGE_OFFSET) >> PAGE_SHIFT) | pgprot_val(pgprot)); |
pgprot | 1166 | arch/sparc/mm/sun4c.c | static pte_t sun4c_mk_pte_io(unsigned long page, pgprot_t pgprot) |
pgprot | 1168 | arch/sparc/mm/sun4c.c | return __pte(((page - PAGE_OFFSET) >> PAGE_SHIFT) | pgprot_val(pgprot)); |
pgprot | 20 | include/asm-alpha/page.h | typedef struct { unsigned long pgprot; } pgprot_t; |
pgprot | 25 | include/asm-alpha/page.h | #define pgprot_val(x) ((x).pgprot) |
pgprot | 218 | include/asm-alpha/pgtable.h | extern inline pte_t mk_pte(unsigned long page, pgprot_t pgprot) |
pgprot | 219 | include/asm-alpha/pgtable.h | { pte_t pte; pte_val(pte) = ((page-PAGE_OFFSET) << (32-PAGE_SHIFT)) | pgprot_val(pgprot); return pte; } |
pgprot | 20 | include/asm-i386/page.h | typedef struct { unsigned long pgprot; } pgprot_t; |
pgprot | 25 | include/asm-i386/page.h | #define pgprot_val(x) ((x).pgprot) |
pgprot | 333 | include/asm-i386/pgtable.h | extern inline pte_t mk_pte(unsigned long page, pgprot_t pgprot) |
pgprot | 334 | include/asm-i386/pgtable.h | { pte_t pte; pte_val(pte) = page | pgprot_val(pgprot); return pte; } |
pgprot | 22 | include/asm-mips/page.h | typedef struct { unsigned long pgprot; } pgprot_t; |
pgprot | 27 | include/asm-mips/page.h | #define pgprot_val(x) ((x).pgprot) |
pgprot | 337 | include/asm-mips/pgtable.h | extern inline pte_t mk_pte(unsigned long page, pgprot_t pgprot) |
pgprot | 338 | include/asm-mips/pgtable.h | { pte_t pte; pte_val(pte) = (page - PAGE_OFFSET) | pgprot_val(pgprot); return pte; } |
pgprot | 22 | include/asm-ppc/page.h | typedef struct { unsigned long pgprot; } pgprot_t; |
pgprot | 27 | include/asm-ppc/page.h | #define pgprot_val(x) ((x).pgprot) |
pgprot | 271 | include/asm-ppc/pgtable.h | extern inline pte_t mk_pte(unsigned long page, pgprot_t pgprot) |
pgprot | 272 | include/asm-ppc/pgtable.h | { pte_t pte; pte_val(pte) = page | pgprot_val(pgprot); return pte; } |
pgprot | 57 | include/asm-sparc/page.h | typedef struct { unsigned long pgprot; } pgprot_t; |
pgprot | 65 | include/asm-sparc/page.h | #define pgprot_val(x) ((x).pgprot) |