HomeSort by: relevance | last modified time | path
    Searched refs:numvnodes (Results 1 - 4 of 4) sorted by relevancy

  /src/usr.sbin/pstat/
pstat.c 305 int numvnodes, ovflw; local in function:vnodemode
309 e_vnodebase = loadvnodes(&numvnodes);
311 (void)printf("%7d vnodes\n", numvnodes);
314 endvnode = e_vnodebase + numvnodes * (VPTRSZ + VNODESZ);
315 (void)printf("%d active vnodes\n", numvnodes);
762 int numvnodes, next_offset; local in function:kinfo_vnodes
764 KGET(V_NUMV, numvnodes);
765 if ((bp = malloc((numvnodes + 20) * (VPTRSZ + VNODESZ))) == NULL)
768 ep = bp + (numvnodes + 20) * (VPTRSZ + VNODESZ);
  /src/sys/kern/
vfs_vnode.c 208 u_int numvnodes __cacheline_aligned;
511 * Adjust numvnodes and signal vdrain thread if there is work.
544 * numvnodes unless there is a change - avoid false
547 numvnodes += d;
551 if (d > 0 && numvnodes > desiredvnodes)
553 if (d > 0 && numvnodes > desiredvnodes + desiredvnodes / 16)
657 if (numvnodes < target) {
vfs_subr.c 1080 *sizep = (numvnodes + KINFO_VNODESLOP) * (VPTRSZ + VNODESZ);
  /src/sys/sys/
vnode.h 460 extern unsigned int numvnodes; /* current number of vnodes */

Completed in 17 milliseconds