Lines Matching refs:pteflags
54 static inline u64 pte_to_hpte_pkey_bits(u64 pteflags) in pte_to_hpte_pkey_bits() argument
56 return (((pteflags & H_PTE_PKEY_BIT0) ? HPTE_R_KEY_BIT0 : 0x0UL) | in pte_to_hpte_pkey_bits()
57 ((pteflags & H_PTE_PKEY_BIT1) ? HPTE_R_KEY_BIT1 : 0x0UL) | in pte_to_hpte_pkey_bits()
58 ((pteflags & H_PTE_PKEY_BIT2) ? HPTE_R_KEY_BIT2 : 0x0UL) | in pte_to_hpte_pkey_bits()
59 ((pteflags & H_PTE_PKEY_BIT3) ? HPTE_R_KEY_BIT3 : 0x0UL) | in pte_to_hpte_pkey_bits()
60 ((pteflags & H_PTE_PKEY_BIT4) ? HPTE_R_KEY_BIT4 : 0x0UL)); in pte_to_hpte_pkey_bits()
63 static inline u16 pte_to_pkey_bits(u64 pteflags) in pte_to_pkey_bits() argument
65 return (((pteflags & H_PTE_PKEY_BIT0) ? 0x10 : 0x0UL) | in pte_to_pkey_bits()
66 ((pteflags & H_PTE_PKEY_BIT1) ? 0x8 : 0x0UL) | in pte_to_pkey_bits()
67 ((pteflags & H_PTE_PKEY_BIT2) ? 0x4 : 0x0UL) | in pte_to_pkey_bits()
68 ((pteflags & H_PTE_PKEY_BIT3) ? 0x2 : 0x0UL) | in pte_to_pkey_bits()
69 ((pteflags & H_PTE_PKEY_BIT4) ? 0x1 : 0x0UL)); in pte_to_pkey_bits()