Lines Matching defs:fault
3 * Memory fault handling for Hexagon
9 * Page fault handling for the Hexagon Virtual Machine.
34 * Canonical page fault handler
42 vm_fault_t fault;
48 * then must not take the fault.
83 fault = handle_mm_fault(vma, address, flags, regs);
85 if (fault_signal_pending(fault, regs)) {
91 /* The fault is fully completed (including releasing mmap lock) */
92 if (fault & VM_FAULT_COMPLETED)
96 if (likely(!(fault & VM_FAULT_ERROR))) {
97 if (fault & VM_FAULT_RETRY) {
112 if (fault & VM_FAULT_OOM) {
118 * unable to fix up the page fault.
120 if (fault & VM_FAULT_SIGBUS) {
140 /* Kernel-mode fault falls through */