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.
94 fault = handle_mm_fault(vma, address, flags, regs);
96 if (fault_signal_pending(fault, regs))
100 if (likely(!(fault & VM_FAULT_ERROR))) {
102 if (fault & VM_FAULT_RETRY) {
118 if (fault & VM_FAULT_OOM) {
124 * unable to fix up the page fault.
126 if (fault & VM_FAULT_SIGBUS) {
145 /* Kernel-mode fault falls through */