There was an error fetching the commit references. Please try again later.
mm: multi-gen LRU: minimal implementation
To avoid confusion, the terms "promotion" and "demotion" will be applied to the multi-gen LRU, as a new convention; the terms "activation" and "deactivation" will be applied to the active/inactive LRU, as usual. The aging produces young generations. Given an lruvec, it increments max_seq when max_seq-min_seq+1 approaches MIN_NR_GENS. The aging promotes hot pages to the youngest generation when it finds them accessed through page tables; the demotion of cold pages happens consequently when it increments max_seq. Promotion in the aging path does not involve any LRU list operations, only the updates of the gen counter and lrugen->nr_pages[]; demotion, unless as the result of the increment of max_seq, requires LRU list operations, e.g., lru_deactivate_fn(). The aging has the complexity O(nr_hot_pages), since it is only interested in hot pages. The eviction consumes old generations. Given an lruvec, it increments min_seq when lrugen->lists[] indexed by min_seq%M...
Showing
- include/linux/mm_inline.h 36 additions, 0 deletionsinclude/linux/mm_inline.h
- include/linux/mmzone.h 41 additions, 0 deletionsinclude/linux/mmzone.h
- include/linux/page-flags-layout.h 4 additions, 1 deletioninclude/linux/page-flags-layout.h
- kernel/bounds.c 2 additions, 0 deletionskernel/bounds.c
- mm/Kconfig 11 additions, 0 deletionsmm/Kconfig
- mm/swap.c 39 additions, 0 deletionsmm/swap.c
- mm/vmscan.c 784 additions, 8 deletionsmm/vmscan.c
- mm/workingset.c 108 additions, 2 deletionsmm/workingset.c