lilawood
lilawood

Reputation: 2293

page replacement algorithm

What is the name for the page replacement algorithm for 2.6 linux kernel?

Upvotes: 4

Views: 4364

Answers (1)

Mikel
Mikel

Reputation: 25596

Linux calls it the "Page Frame Reclaiming Algorithm".

In my limited understanding, it's basically LRU with a bias towards non-dirty pages.

See chapter 17 of Understanding the Linux Kernel for more details.

Upvotes: 3

Related Questions