Searched refs:total_vm (Results 1 - 14 of 14) sorted by relevance

/linux-master/include/trace/events/
H A Dmmap.h18 __field(unsigned long, total_vm)
29 __entry->total_vm = current->mm->total_vm;
38 TP_printk("addr=0x%lx err=%ld total_vm=0x%lx flags=0x%lx len=0x%lx lo=0x%lx hi=0x%lx mask=0x%lx ofs=0x%lx",
41 __entry->total_vm, __entry->flags, __entry->length,
H A Doom.h84 __field(unsigned long, total_vm)
96 __entry->total_vm = PG_COUNT_TO_KB(task->mm->total_vm);
108 __entry->total_vm,
/linux-master/kernel/
H A Dtsacct.c145 tsk->acct_vm_mem1 += delta * READ_ONCE(tsk->mm->total_vm) >> 10;
H A Dfork.c652 mm->total_vm = oldmm->total_vm;
1693 mm->hiwater_vm = mm->total_vm;
/linux-master/mm/
H A Ddebug.c188 "hiwater_rss %lx hiwater_vm %lx total_vm %lx locked_vm %lx\n"
219 mm->hiwater_rss, mm->hiwater_vm, mm->total_vm, mm->locked_vm,
H A Doom_kill.c405 task->tgid, task->mm->total_vm, get_mm_rss(task->mm),
428 pr_info("[ pid ] uid tgid total_vm rss rss_anon rss_file rss_shmem pgtables_bytes swapents oom_score_adj name\n");
951 message, task_pid_nr(victim), victim->comm, K(mm->total_vm),
H A Dutil.c991 allowed -= min_t(long, mm->total_vm / 32, reserve);
H A Dmlock.c772 if (!(flags & MCL_CURRENT) || (current->mm->total_vm <= lock_limit) ||
H A Dnommu.c1193 current->mm->total_vm += len >> PAGE_SHIFT;
1516 mm->total_vm = 0;
H A Dmmap.c2281 /* Update high watermark before we lower total_vm */
3178 mm->total_vm += len >> PAGE_SHIFT;
3440 if (mm->total_vm + npages > rlimit(RLIMIT_AS) >> PAGE_SHIFT)
3465 WRITE_ONCE(mm->total_vm, READ_ONCE(mm->total_vm)+npages);
/linux-master/fs/proc/
H A Dtask_mmu.c36 unsigned long hiwater_vm, total_vm, hiwater_rss, total_rss; local
44 * hiwater_rss only when about to *lower* total_vm or rss. Any
45 * collector of these hiwater stats must therefore get total_vm
49 hiwater_vm = total_vm = mm->total_vm;
63 SEQ_PUT_DEC(" kB\nVmSize:\t", total_vm);
87 return PAGE_SIZE * mm->total_vm;
100 return mm->total_vm;
/linux-master/include/linux/
H A Dmm_types.h881 unsigned long total_vm; /* Total pages mapped */ member in struct:mm_struct::__anon1182
H A Dmm.h2649 return max(mm->hiwater_vm, mm->total_vm);
2662 if (mm->hiwater_vm < mm->total_vm)
2663 mm->hiwater_vm = mm->total_vm;
/linux-master/fs/
H A Dexec.c286 mm->stack_vm = mm->total_vm = 1;

Completed in 234 milliseconds