Searched refs:_PAGE_FILE (Results 26 - 41 of 41) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/microblaze/include/asm/
H A Dpgtable.h207 #define _PAGE_FILE 0x001 /* when !present: nonlinear file mapping */ macro
343 static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
510 #define pgoff_to_pte(off) ((pte_t) { ((off) << 3) | _PAGE_FILE })
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/frv/include/asm/
H A Dpgtable.h301 #define _PAGE_FILE 0x002 /* set:pagecache unset:swap */ macro
471 * bit 1: Type: 0 for swap, 1 for file (_PAGE_FILE)
484 return pte.pte & _PAGE_FILE;
490 #define pgoff_to_pte(off) __pte((off) << 2 | _PAGE_FILE)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/include/asm/
H A Dpgtable.h75 #define _PAGE_FILE 0x80000 /* set:pagecache, unset:swap */ macro
270 extern inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
350 #define pgoff_to_pte(off) ((pte_t) { ((off) << 32) | _PAGE_FILE })
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/include/asm/
H A Dpgtable_64.h121 _PAGE_FILE })
H A Dpgtable_types.h62 #define _PAGE_FILE (_AT(pteval_t, 1) << _PAGE_BIT_FILE) macro
H A Dpgtable.h102 return pte_flags(pte) & _PAGE_FILE;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/include/asm/
H A Dpgtable.h278 #define _PAGE_FILE HV_PTE_CLIENT1 macro
282 #define pgoff_to_pte(off) ((pte_t) { (((long long)(off)) << 32) | _PAGE_FILE })
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/include/asm/
H A Dpgtable.h21 #define _PAGE_FILE 0x008 /* nonlinear file mapping, saved PTE; unset:swap */ macro
159 return pte_get_bits(pte, _PAGE_FILE);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/score/include/asm/
H A Dpgtable.h97 * Bits 9(_PAGE_PRESENT) and 10(_PAGE_FILE)are taken,
104 ((pte_t) {((off) & 0x1ff) | (((off) >> 9) << 11) | _PAGE_FILE})
209 return pte_val(pte) & _PAGE_FILE;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m32r/include/asm/
H A Dpgtable.h96 #define _PAGE_FILE (1UL << _PAGE_BIT_FILE) macro
214 return pte_val(pte) & _PAGE_FILE;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Dpgtable.h62 #define _PAGE_FILE (1 << 1) /* see swap & file pte remarks below */ macro
291 #define pte_file(pte) ((pte_val(pte) & _PAGE_FILE) != 0)
465 * bit 1 : _PAGE_FILE (must be zero)
472 * bit 1 : _PAGE_FILE (must be one)
484 #define pgoff_to_pte(off) ((pte_t) { ((off) << 2) | _PAGE_FILE })
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dpgtable.h207 static inline int pte_file(pte_t pte) { return pte.pte_low & _PAGE_FILE; }
263 static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
H A Dpgtable-64.h290 #define pgoff_to_pte(off) ((pte_t) { ((off) << 8) | _PAGE_FILE })
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dpgtable-ppc32.h321 * must not include the _PAGE_PRESENT bit, the _PAGE_FILE bit, or the
333 #define pgoff_to_pte(off) ((pte_t) { ((off) << 3) | _PAGE_FILE })
H A Dpgtable.h34 static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
H A Dpgtable-ppc64.h354 #define pgoff_to_pte(off) ((pte_t) {((off) << PTE_RPN_SHIFT)|_PAGE_FILE})

Completed in 87 milliseconds

12