Searched defs:pgcpfailcnt (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/vm/
H A Dvm_pagelist.c110 * Limit page get contig page search based on failure cnts in pgcpfailcnt[].
113 * pgcpfailcnt[] is bounded by PGCPFAILMAX (>= 1/2 of installed
114 * memory). When reached, pgcpfailcnt[] is reset to 1/2 of this upper
120 pgcnt_t pgcpfailcnt[MMU_PAGE_SIZES]; variable
125 if (++pgcpfailcnt[szc] >= PGCPFAILMAX) \
126 pgcpfailcnt[szc] = PGCPFAILMAX / 2;
3631 * previous failure counts (pgcpfailcnt[]).
3661 pfnflag = pgcpfailcnt[szc];
3678 pfnflag = pgcpfailcnt[szc];
3681 pgcpfailcnt[sz
[all...]

Completed in 82 milliseconds