1 / 6

Page Fault Handling

. Step 3: The operating system discovers that a page fault has occurred, and tries to discover the virtual page needed.Step 4: Once the virtual address that caused the fault is known, the operating system checks to see if the address is valid and the protection consistent with the access. If addr

mauli
Download Presentation

Page Fault Handling

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


    1. Page Fault Handling Step 1: The hardware traps to the kernel, saving the program counter on the stack. Step 2: An assembly code routine is started to save the general registers and other volatile information. This routine calls the operating system as a procedure.

    2. Step 3: The operating system discovers that a page fault has occurred, and tries to discover the virtual page needed. Step 4: Once the virtual address that caused the fault is known, the operating system checks to see if the address is valid and the protection consistent with the access. If address is valid and no protection fault has occurred, the system attempts to acquire a page frame from the list of free frames. If no frames are free, the page replace algorithm is run.

    3. Step 5: If the page frame is dirty, the is scheduled for transfer to the disk, and a context switch takes place, suspending the faulting process ad letting another one run until the disk transfer is completed. (the frame is marked as busy to prevent it from being used for another purpose.) Step 6: As soon as the page frame is clean the operating system looks up the disk address where the page is, and schedules a disk operation.

    4. Step 7: When the disk interrupt indicates that the page has arrived, the page tables are updated to reflect its position, and the frame is marked as being in normal state. Step 8: the faulting instruction is backed up to the state it had when it began and the program counter is reset to that position.

    5. Step 9: The faulting process is scheduled and the operating system returns to the assembly language routine that called it. Step 10: The routine restores the registers and other volatile information, and returns to user space to continue execution, as if no fault had occurred.

More Related