Home
last modified time | relevance | path

Searched refs:get_mm_counter_sum (Results 1 – 2 of 2) sorted by relevance

/linux/fs/proc/
H A Dtask_mmu.c42 anon = get_mm_counter_sum(mm, MM_ANONPAGES); in task_mem()
43 file = get_mm_counter_sum(mm, MM_FILEPAGES); in task_mem()
44 shmem = get_mm_counter_sum(mm, MM_SHMEMPAGES); in task_mem()
65 swap = get_mm_counter_sum(mm, MM_SWAPENTS); in task_mem()
98 *shared = get_mm_counter_sum(mm, MM_FILEPAGES) + in task_statm()
99 get_mm_counter_sum(mm, MM_SHMEMPAGES); in task_statm()
103 *resident = *shared + get_mm_counter_sum(mm, MM_ANONPAGES); in task_statm()
/linux/include/linux/
H A Dmm.h2685 static inline unsigned long get_mm_counter_sum(struct mm_struct *mm, int member) in get_mm_counter_sum() function