UNIX Programming and Technical

Q. Name two paging states for a page in memory?

A. The two paging states are:
The page is aging and is not yet eligible for swapping,
The page is eligible for swapping but not yet eligible for reassignment to other virtual address space.

Read Solution (Total 0)

UNIX Other Question

Q. What is Page-Stealer process?

A. This is the Kernel process that makes rooms for the incoming pages, by swapping the memory pages that are not the part of the working set of a process. Page-Stealer is created by the Kernel at the system initialization and invokes it throughout the lifetime of the system. Kernel locks a region when a process faults on a page in the region, so that page stealer cannot steal the page, which is being faulted in.
Q. What are the phases of swapping a page from the memory?

A. Page stealer finds the page eligible for swapping and places the page number in the list of pages to be swapped.
Kernel copies the page to a swap device when necessary and clears the valid bit in the page table entry, decrements the pfdata reference count, and places the pfdata table entry at the end of the free list if its reference count is 0.