• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/mp/

Lines Matching refs:c_mp

85 	MPOOL *c_mp, *mp;
125 c_mp = dbmp->reginfo[i].primary;
127 sp->st_map += c_mp->stat.st_map;
128 sp->st_cache_hit += c_mp->stat.st_cache_hit;
129 sp->st_cache_miss += c_mp->stat.st_cache_miss;
130 sp->st_page_create += c_mp->stat.st_page_create;
131 sp->st_page_in += c_mp->stat.st_page_in;
132 sp->st_page_out += c_mp->stat.st_page_out;
133 sp->st_ro_evict += c_mp->stat.st_ro_evict;
134 sp->st_rw_evict += c_mp->stat.st_rw_evict;
135 sp->st_page_trickle += c_mp->stat.st_page_trickle;
136 sp->st_pages += c_mp->stat.st_pages;
142 &dbmp->reginfo[i], c_mp, &sp->st_page_dirty);
144 sp->st_hash_buckets += c_mp->stat.st_hash_buckets;
145 sp->st_hash_searches += c_mp->stat.st_hash_searches;
146 sp->st_hash_longest += c_mp->stat.st_hash_longest;
147 sp->st_hash_examined += c_mp->stat.st_hash_examined;
153 env, &dbmp->reginfo[i], c_mp, sp, flags);
155 c_mp->mtx_region, &tmp_wait, &tmp_nowait);
158 sp->st_alloc += c_mp->stat.st_alloc;
159 sp->st_alloc_buckets += c_mp->stat.st_alloc_buckets;
161 c_mp->stat.st_alloc_max_buckets)
163 c_mp->stat.st_alloc_max_buckets;
164 sp->st_alloc_pages += c_mp->stat.st_alloc_pages;
166 c_mp->stat.st_alloc_max_pages)
168 c_mp->stat.st_alloc_max_pages;
172 __mutex_clear(env, c_mp->mtx_region);
175 st_bytes = c_mp->stat.st_bytes;
176 st_gbytes = c_mp->stat.st_gbytes;
177 st_hash_buckets = c_mp->stat.st_hash_buckets;
178 st_pages = c_mp->stat.st_pages;
179 memset(&c_mp->stat, 0, sizeof(c_mp->stat));
180 c_mp->stat.st_bytes = st_bytes;
181 c_mp->stat.st_gbytes = st_gbytes;
182 c_mp->stat.st_hash_buckets = st_hash_buckets;
183 c_mp->stat.st_pages = st_pages;
710 MPOOL *c_mp;
713 c_mp = reginfo->primary;
718 "BH hash table (%lu hash slots)", (u_long)c_mp->htab_buckets);
722 for (hp = R_ADDR(reginfo, c_mp->htab),
723 bucket = 0; bucket < c_mp->htab_buckets; ++hp, ++bucket) {