mm: introduce idle page tracking
Knowing the portion of memory that is not used by a certain application or memory cgroup (idle memory) can be useful for partitioning the system efficiently, e.g. by setting memory cgroup limits appropriately. Currently, the only means to estimate the amount of idle memory provided by the kernel is /proc/PID/{clear_refs,smaps}: the user can clear the access bit for all pages mapped to a particular process by writing 1 to clear_refs, wait for some time, and then count smaps:Referenced. However, this method has two serious shortcomings: - it does not count unmapped file pages - it affects the reclaimer logic To overcome these drawbacks, this patch introduces two new page flags, Idle and Young, and a new sysfs file, /sys/kernel/mm/page_idle/bitmap. A page's Idle flag can only be set from userspace by setting bit in /sys/kernel/mm/page_idle/bitmap at the offset corresponding to the page, and it is cleared whenever the page is accessed either through page tables (it is cl...
Showing
- Documentation/vm/00-INDEX 2 additions, 0 deletionsDocumentation/vm/00-INDEX
- Documentation/vm/idle_page_tracking.txt 98 additions, 0 deletionsDocumentation/vm/idle_page_tracking.txt
- fs/proc/page.c 3 additions, 0 deletionsfs/proc/page.c
- fs/proc/task_mmu.c 4 additions, 1 deletionfs/proc/task_mmu.c
- include/linux/mmu_notifier.h 2 additions, 0 deletionsinclude/linux/mmu_notifier.h
- include/linux/page-flags.h 11 additions, 0 deletionsinclude/linux/page-flags.h
- include/linux/page_ext.h 4 additions, 0 deletionsinclude/linux/page_ext.h
- include/linux/page_idle.h 110 additions, 0 deletionsinclude/linux/page_idle.h
- mm/Kconfig 12 additions, 0 deletionsmm/Kconfig
- mm/Makefile 1 addition, 0 deletionsmm/Makefile
- mm/debug.c 4 additions, 0 deletionsmm/debug.c
- mm/huge_memory.c 10 additions, 2 deletionsmm/huge_memory.c
- mm/migrate.c 6 additions, 0 deletionsmm/migrate.c
- mm/page_ext.c 4 additions, 0 deletionsmm/page_ext.c
- mm/page_idle.c 232 additions, 0 deletionsmm/page_idle.c
- mm/rmap.c 6 additions, 0 deletionsmm/rmap.c
- mm/swap.c 3 additions, 0 deletionsmm/swap.c
Please register or sign in to comment