Searched refs:get_mm_counter (Results 1 – 3 of 3) sorted by relevance
/linux/mm/ |
A D | oom_kill.c | 233 points = get_mm_rss(p->mm) + get_mm_counter(p->mm, MM_SWAPENTS) + in oom_badness() 409 get_mm_counter(task->mm, MM_SWAPENTS), in dump_task() 599 K(get_mm_counter(mm, MM_ANONPAGES)), in oom_reap_task_mm() 600 K(get_mm_counter(mm, MM_FILEPAGES)), in oom_reap_task_mm() 601 K(get_mm_counter(mm, MM_SHMEMPAGES))); in oom_reap_task_mm() 897 K(get_mm_counter(mm, MM_ANONPAGES)), in __oom_kill_process() 898 K(get_mm_counter(mm, MM_FILEPAGES)), in __oom_kill_process() 899 K(get_mm_counter(mm, MM_SHMEMPAGES)), in __oom_kill_process()
|
/linux/fs/proc/ |
A 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/include/linux/ |
A D | mm.h | 2027 static inline unsigned long get_mm_counter(struct mm_struct *mm, int member) in get_mm_counter() function 2082 return get_mm_counter(mm, MM_FILEPAGES) + in get_mm_rss() 2083 get_mm_counter(mm, MM_ANONPAGES) + in get_mm_rss() 2084 get_mm_counter(mm, MM_SHMEMPAGES); in get_mm_rss()
|
Completed in 17 milliseconds