Lines Matching defs:access
97 /* access register mode, not used in the kernel */
100 /* home space exception -> access via kernel ASCE */
179 pr_cont("access register ");
262 * Oops. The kernel tried to access some bad page. We'll have to
279 NULL pointer write access in kernel mode. */
319 static noinline void do_fault_error(struct pt_regs *regs, int access,
326 if (access == VM_EXEC && signal_return(regs) == 0)
330 /* Bad memory access. Check if it is kernel or user space. */
382 static inline vm_fault_t do_exception(struct pt_regs *regs, int access)
433 access = VM_WRITE;
434 if (access == VM_WRITE)
467 * Ok, we have a good vm_area for this memory access, so
471 if (unlikely(!(vma->vm_flags & access)))
529 int access;
552 access = VM_EXEC;
555 access = VM_WRITE;
556 fault = do_exception(regs, access);
559 do_fault_error(regs, access, fault);
565 int access;
568 access = VM_ACCESS_FLAGS;
569 fault = do_exception(regs, access);
571 do_fault_error(regs, access, fault);