Page Replacement Algorithm

What is the name of the page replacement algorithm for the Linux linux kernel?

+4
source share
1 answer

Linux calls it the "page template recovery algorithm."

In my limited understanding, this is mainly LRU with a bias towards unclean pages.

See Chapter 17, Understanding the Linux Kernel , for more information.

+3
source

All Articles