Skip to main content

One post tagged with "Memory Management"

Topics covering virtual memory, page faults, paging, and memory-related OS concepts.

View All Tags

Page faults don’t always mean disk access

· One min read
Abhay Ojha
Software Engineer @Intel, M. Tech @NITWarangal

A very common misconception in Operating Systems is that every page fault means the OS must access the disk.
That is not always true.

A page fault simply means that the required page is not usable in the current context.
This can happen for multiple reasons.

In many cases, the page is already present in main memory, but: