Lines Matching refs:pteflags
14 static inline u64 pte_to_hpte_pkey_bits(u64 pteflags) in pte_to_hpte_pkey_bits() argument
16 return (((pteflags & H_PTE_PKEY_BIT4) ? HPTE_R_KEY_BIT4 : 0x0UL) | in pte_to_hpte_pkey_bits()
17 ((pteflags & H_PTE_PKEY_BIT3) ? HPTE_R_KEY_BIT3 : 0x0UL) | in pte_to_hpte_pkey_bits()
18 ((pteflags & H_PTE_PKEY_BIT2) ? HPTE_R_KEY_BIT2 : 0x0UL) | in pte_to_hpte_pkey_bits()
19 ((pteflags & H_PTE_PKEY_BIT1) ? HPTE_R_KEY_BIT1 : 0x0UL) | in pte_to_hpte_pkey_bits()
20 ((pteflags & H_PTE_PKEY_BIT0) ? HPTE_R_KEY_BIT0 : 0x0UL)); in pte_to_hpte_pkey_bits()
23 static inline u16 hash__pte_to_pkey_bits(u64 pteflags) in hash__pte_to_pkey_bits() argument
25 return (((pteflags & H_PTE_PKEY_BIT4) ? 0x10 : 0x0UL) | in hash__pte_to_pkey_bits()
26 ((pteflags & H_PTE_PKEY_BIT3) ? 0x8 : 0x0UL) | in hash__pte_to_pkey_bits()
27 ((pteflags & H_PTE_PKEY_BIT2) ? 0x4 : 0x0UL) | in hash__pte_to_pkey_bits()
28 ((pteflags & H_PTE_PKEY_BIT1) ? 0x2 : 0x0UL) | in hash__pte_to_pkey_bits()
29 ((pteflags & H_PTE_PKEY_BIT0) ? 0x1 : 0x0UL)); in hash__pte_to_pkey_bits()