The kernel radar: folios, multi-generational LRU, and Rust
The kernel radar: folios, multi-generational LRU, and Rust
Posted Jan 21, 2022 12:11 UTC (Fri) by pbonzini (subscriber, #60935)In reply to: The kernel radar: folios, multi-generational LRU, and Rust by ldearquer
Parent article: The kernel radar: folios, multi-generational LRU, and Rust
Usually Linux uses intrusive linked lists. They allow the same node to be part of multiple data structures, so you find the node in a different data structure (for example an array or hash table) and juggle the pointers in the node to move it to the end of the LRU list.
