How is paging managed in the absence of swapping. If that is the case, how will a page fault be managed?
What I meant is, if there is no availability for swapping, then how is Paging managed. I know that there will be two list of pages - free_pages list and allocated_pages list. When the pages in the free_pages list becomes low, it will move the LRU pages from the allocated_pages list to the swap partition. I just want to know what will happen if there is no swap partition.