Home | History | Annotate | Download | only in kern

Lines Matching defs:COUNT

250 	u_int			count[LRU_COUNT];
267 #define COUNT(f) do { \
412 cache_lru.count[ncp->nc_lrulist]--;
554 COUNT(ncs_long);
574 COUNT(ncs_miss);
588 COUNT(ncs_badhits);
606 COUNT(ncs_badhits);
610 COUNT(ncs_neghits);
627 COUNT(ncs_falsehits);
631 COUNT(ncs_goodhits);
676 COUNT(ncs_long);
737 COUNT(ncs_denied);
750 COUNT(ncs_miss);
759 COUNT(ncs_neghits);
761 COUNT(ncs_goodhits); /* XXX can be "badhits" */
836 COUNT(ncs_denied);
901 COUNT(ncs_revhits);
905 COUNT(ncs_revmiss);
939 total = atomic_load_relaxed(&cache_lru.count[LRU_ACTIVE]);
940 total += atomic_load_relaxed(&cache_lru.count[LRU_INACTIVE]);
985 cache_lru.count[LRU_ACTIVE]++;
1336 cache_lru.count[ncp->nc_lrulist]--;
1337 cache_lru.count[LRU_ACTIVE]++;
1355 total = cache_lru.count[LRU_ACTIVE] + cache_lru.count[LRU_INACTIVE];
1366 if (cache_lru.count[LRU_ACTIVE] < cache_lru.count[LRU_INACTIVE]) {
1380 cache_lru.count[LRU_ACTIVE]--;
1381 cache_lru.count[LRU_INACTIVE]++;
1411 SDT_PROBE(vfs, namecache, prune, done, cache_lru.count[LRU_ACTIVE] +
1412 cache_lru.count[LRU_INACTIVE], toscan, 0, 0, 0);
1456 * For file system code: count a lookup that required a full re-scan of
1463 COUNT(ncs_pass2);
1467 * For file system code: count a lookup that scored a hit in the directory
1474 COUNT(ncs_2passes);