Lines Matching refs:fault
27 accessible, the CPU generates a page fault exception and calls the
28 page fault handler
32 in arch/x86/mm/fault.c. The parameters on the stack are set up by
39 space of the process, the fault probably occurred, because the page
47 (fixup). If this search is successful, the fault handler modifies the
239 backward) is the address of the instruction that might fault, i.e.
245 the fault, in our case the actual value is c0199ff5:
260 So, what actually happens if a fault from kernel mode with no suitable
267 4.) do page fault calls search_exception_table (regs->eip == c017e7a5);
270 and returns the address of the associated fault handle code c0199ff5.
271 6.) do_page_fault modifies its own return address to point to the fault
273 7.) execution continues in the fault handling code.