Lines Matching defs:uvmexp

313 struct uvmexp {  struct
315 int pagesize; /* size of a page (PAGE_SIZE): must be power of 2 */
316 int pagemask; /* page mask */
317 int pageshift; /* page shift */
320 int npages; /* number of pages we manage */
321 int free; /* number of free pages */
322 int paging; /* number of pages in the process of being paged out */
323 int wired; /* number of wired pages */
330 int ncolors; /* number of page color buckets: must be p-o-2 */
331 int colormask; /* color bucket mask */
333 int zeropages; /* number of zero'd pages */
334 int reserve_pagedaemon; /* number of pages reserved for pagedaemon */
335 int reserve_kernel; /* number of pages reserved for kernel */
336 unsigned anonpages; /* number of pages used by anon mappings */
337 unsigned filepages; /* number of pages used by cached file data */
338 unsigned execpages; /* number of pages used by cached exec data */
341 int freemin; /* min number of free pages */
342 int freetarg; /* target number of free pages */
343 int wiredmax; /* max number of wired pages */
346 int nswapdev; /* number of configured swap devices in system */
347 int swpages; /* number of PAGE_SIZE'ed swap pages */
348 int swpgavail; /* number of swap pages currently available */
349 int swpginuse; /* number of swap pages in use */
350 int swpgonly; /* number of swap pages in use, not also in RAM */
351 int nswget; /* number of times fault calls uvm_swap_get() */
354 int faults; /* page fault count */
355 int traps; /* trap count */
356 int intrs; /* interrupt count */
357 int swtch; /* context switch count */
358 int softs; /* software interrupt count */
359 int syscalls; /* system calls */
360 int pageins; /* pagein operation count */
362 int _unused1;
363 int _unused2;
364 int pgswapin; /* pages swapped in */
365 int pgswapout; /* pages swapped out */
366 int forks; /* forks */
367 int forks_ppwait; /* forks where parent waits */
368 int forks_sharevm; /* forks where vmspace is shared */
369 int pga_zerohit; /* pagealloc where zero wanted and zero
371 int pga_zeromiss; /* pagealloc where zero wanted and zero
373 int zeroaborts; /* number of times page zeroing was
375 int colorhit; /* pagealloc where we got optimal color */
376 int colormiss; /* pagealloc where we didn't */
377 int cpuhit; /* pagealloc where we allocated locally */
378 int cpumiss; /* pagealloc where we didn't */
381 int fltnoram; /* number of times fault was out of ram */
382 int fltnoanon; /* number of times fault was out of anons */
383 int fltpgwait; /* number of times fault had to wait on a page */
384 int fltpgrele; /* number of times fault found a released page */
385 int fltrelck; /* number of times fault relock called */
386 int fltrelckok; /* number of times fault relock is a success */
387 int fltanget; /* number of times fault gets anon page */
388 int fltanretry; /* number of times fault retrys an anon get */
389 int fltamcopy; /* number of times fault clears "needs copy" */
390 int fltnamap; /* number of times fault maps a neighbor anon page */
391 int fltnomap; /* number of times fault maps a neighbor obj page */
392 int fltlget; /* number of times fault does a locked pgo_get */
393 int fltget; /* number of times fault does an unlocked get */
394 int flt_anon; /* number of times fault anon (case 1a) */
395 int flt_acow; /* number of times fault anon cow (case 1b) */
396 int flt_obj; /* number of times fault is on object page (2a) */
397 int flt_prcopy; /* number of times fault promotes with copy (2b) */
398 int flt_przero; /* number of times fault promotes with zerofill (2b) */
401 int pdwoke; /* number of times daemon woke up */
425 struct uvmexp_sysctl { argument