Lines Matching refs:pkey_rights
214 int pkey_rights; in pkey_disable_set() local
220 pkey_rights = hw_pkey_get(pkey, syscall_flags); in pkey_disable_set()
223 pkey, pkey, pkey_rights); in pkey_disable_set()
225 pkey_assert(pkey_rights >= 0); in pkey_disable_set()
227 pkey_rights |= flags; in pkey_disable_set()
229 ret = hw_pkey_set(pkey, pkey_rights, syscall_flags); in pkey_disable_set()
232 shadow_pkey_reg = set_pkey_bits(shadow_pkey_reg, pkey, pkey_rights); in pkey_disable_set()
238 pkey_rights = hw_pkey_get(pkey, syscall_flags); in pkey_disable_set()
240 pkey, pkey, pkey_rights); in pkey_disable_set()
252 int pkey_rights = hw_pkey_get(pkey, syscall_flags); in pkey_disable_clear() local
257 pkey, pkey, pkey_rights); in pkey_disable_clear()
258 pkey_assert(pkey_rights >= 0); in pkey_disable_clear()
260 pkey_rights &= ~flags; in pkey_disable_clear()
262 ret = hw_pkey_set(pkey, pkey_rights, 0); in pkey_disable_clear()
263 shadow_pkey_reg = set_pkey_bits(shadow_pkey_reg, pkey, pkey_rights); in pkey_disable_clear()
266 pkey_rights = hw_pkey_get(pkey, syscall_flags); in pkey_disable_clear()
268 pkey, pkey, pkey_rights); in pkey_disable_clear()