Lines Matching refs:access
321 static noinline void do_fault_error(struct pt_regs *regs, int access, in do_fault_error() argument
328 if (access == VM_EXEC && signal_return(regs) == 0) in do_fault_error()
385 static inline vm_fault_t do_exception(struct pt_regs *regs, int access) in do_exception() argument
435 if (access == VM_WRITE || (trans_exc_code & store_indication) == 0x400) in do_exception()
472 if (unlikely(!(vma->vm_flags & access))) in do_exception()
548 int access; in do_protection_exception() local
571 access = VM_EXEC; in do_protection_exception()
574 access = VM_WRITE; in do_protection_exception()
575 fault = do_exception(regs, access); in do_protection_exception()
578 do_fault_error(regs, access, fault); in do_protection_exception()
584 int access; in do_dat_exception() local
587 access = VM_READ | VM_EXEC | VM_WRITE; in do_dat_exception()
588 fault = do_exception(regs, access); in do_dat_exception()
590 do_fault_error(regs, access, fault); in do_dat_exception()