Searched refs:get_mm_counter (Results 1 – 3 of 3) sorted by relevance
| /Linux-v5.4/mm/ |
| D | oom_kill.c | 227 points = get_mm_rss(p->mm) + get_mm_counter(p->mm, MM_SWAPENTS) + in oom_badness() 406 get_mm_counter(task->mm, MM_SWAPENTS), in dump_task() 596 K(get_mm_counter(mm, MM_ANONPAGES)), in oom_reap_task_mm() 597 K(get_mm_counter(mm, MM_FILEPAGES)), in oom_reap_task_mm() 598 K(get_mm_counter(mm, MM_SHMEMPAGES))); in oom_reap_task_mm() 889 K(get_mm_counter(mm, MM_ANONPAGES)), in __oom_kill_process() 890 K(get_mm_counter(mm, MM_FILEPAGES)), in __oom_kill_process() 891 K(get_mm_counter(mm, MM_SHMEMPAGES)), in __oom_kill_process()
|
| /Linux-v5.4/fs/proc/ |
| D | task_mmu.c | 35 anon = get_mm_counter(mm, MM_ANONPAGES); in task_mem() 36 file = get_mm_counter(mm, MM_FILEPAGES); in task_mem() 37 shmem = get_mm_counter(mm, MM_SHMEMPAGES); in task_mem() 58 swap = get_mm_counter(mm, MM_SWAPENTS); in task_mem() 91 *shared = get_mm_counter(mm, MM_FILEPAGES) + in task_statm() 92 get_mm_counter(mm, MM_SHMEMPAGES); in task_statm() 96 *resident = *shared + get_mm_counter(mm, MM_ANONPAGES); in task_statm()
|
| /Linux-v5.4/include/linux/ |
| D | mm.h | 1631 static inline unsigned long get_mm_counter(struct mm_struct *mm, int member) in get_mm_counter() function 1678 return get_mm_counter(mm, MM_FILEPAGES) + in get_mm_rss() 1679 get_mm_counter(mm, MM_ANONPAGES) + in get_mm_rss() 1680 get_mm_counter(mm, MM_SHMEMPAGES); in get_mm_rss()
|