| 2316 | } |
| 2317 | |
| 2318 | bool |
| 2319 | extent_boot(void) { |
| 2320 | if (rtree_new(&extents_rtree, true)) { |
| 2321 | return true; |
| 2322 | } |
| 2323 | |
| 2324 | if (mutex_pool_init(&extent_mutex_pool, "extent_mutex_pool", |
| 2325 | WITNESS_RANK_EXTENT_POOL)) { |
| 2326 | return true; |
| 2327 | } |
| 2328 | |
| 2329 | if (have_dss) { |
| 2330 | extent_dss_boot(); |
| 2331 | } |
| 2332 | |
| 2333 | return false; |
| 2334 | } |
| 2335 | |
| 2336 | void |
| 2337 | extent_util_stats_get(tsdn_t *tsdn, const void *ptr, |
no test coverage detected