Home
last modified time | relevance | path

Searched refs:rt_histogram (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Drange_tree.c116 if (hist[i] != rt->rt_histogram[i]) { in range_tree_stat_verify()
118 i, hist, hist[i], rt->rt_histogram[i]); in range_tree_stat_verify()
120 VERIFY3U(hist[i], ==, rt->rt_histogram[i]); in range_tree_stat_verify()
132 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in range_tree_stat_incr()
134 rt->rt_histogram[idx]++; in range_tree_stat_incr()
135 ASSERT3U(rt->rt_histogram[idx], !=, 0); in range_tree_stat_incr()
146 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in range_tree_stat_decr()
148 ASSERT3U(rt->rt_histogram[idx], !=, 0); in range_tree_stat_decr()
149 rt->rt_histogram[idx]--; in range_tree_stat_decr()
689 bzero(rt->rt_histogram, sizeof (rt->rt_histogram)); in range_tree_vacate()
H A Dspace_map.c448 if (rt->rt_histogram[i] != 0) in space_map_histogram_verify()
489 rt->rt_histogram[i] << (i - idx - sm->sm_shift); in space_map_histogram_add()
943 uint64_t *histogram = rt->rt_histogram; in space_map_estimate_optimal_size()
H A Dmetaslab.c1919 histogram[idx] += rt->rt_histogram[i] << (i - idx - shift); in metaslab_aux_histogram_add()
2943 segments += msp->ms_allocatable->rt_histogram[i]; in metaslab_weight_from_range_tree()
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Drange_tree.h79 uint64_t rt_histogram[RANGE_TREE_HISTOGRAM_SIZE]; member
/illumos-gate/usr/src/cmd/zdb/
H A Dzdb.c907 dump_histogram(rt->rt_histogram, RANGE_TREE_HISTOGRAM_SIZE, 0); in dump_metaslab_stats()