How does the page fault handler know where to get the 4K bytes?

93 Views Asked by At

I mean, which file and what's the offset into the file?

The page fault handler need to copy 4K bytes from there into the physical RAM.

----------------------EDIT----------------------------

I found out that vm_file in vm_area_struct was just what I was looking for.

1

There are 1 best solutions below

0
On

I found out that vm_file in vm_area_struct was just what I was looking for. – xiaokaoy