Lines Matching defs:is_write
197 unsigned long address, bool is_write)
228 if (bad_kuap_fault(regs, address, is_write))
237 static bool access_pkey_error(bool is_write, bool is_exec, bool is_pkey,
245 if (!arch_vma_access_permitted(vma, is_write, is_exec, 0))
252 static bool access_error(bool is_write, bool is_exec, struct vm_area_struct *vma)
270 if (is_write) {
304 static void sanity_check_fault(bool is_write, bool is_user,
332 * the special !is_write in the below conditional.
352 if (radix_enabled() || is_write)
359 * Define the correct "is_write" bit in error_code based
397 int is_write = page_fault_is_write(error_code);
413 sanity_check_fault(is_write, is_user, error_code, address);
420 if (unlikely(!is_user && bad_kernel_fault(regs, error_code, address, is_write)))
449 if (is_write)
497 if (unlikely(access_pkey_error(is_write, is_exec,
502 if (unlikely(access_error(is_write, is_exec, vma)))
561 int is_write = page_fault_is_write(regs->dsisr);
578 is_write ? "write" : "read", regs->dar);