Searched refs:rt_histogram (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | range_tree.c | 117 if (hist[i] != rt->rt_histogram[i]) { in range_tree_stat_verify() 120 (u_longlong_t)rt->rt_histogram[i]); in range_tree_stat_verify() 122 VERIFY3U(hist[i], ==, rt->rt_histogram[i]); in range_tree_stat_verify() 134 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in range_tree_stat_incr() 136 rt->rt_histogram[idx]++; in range_tree_stat_incr() 137 ASSERT3U(rt->rt_histogram[idx], !=, 0); in range_tree_stat_incr() 148 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in range_tree_stat_decr() 150 ASSERT3U(rt->rt_histogram[idx], !=, 0); in range_tree_stat_decr() 151 rt->rt_histogram[idx]--; in range_tree_stat_decr() 718 memset(rt->rt_histogram, 0, sizeof (rt->rt_histogram)); in range_tree_vacate()
|
H A D | space_map.c | 470 if (rt->rt_histogram[i] != 0) in space_map_histogram_verify() 511 rt->rt_histogram[i] << (i - idx - sm->sm_shift); in space_map_histogram_add() 968 uint64_t *histogram = rt->rt_histogram; in space_map_estimate_optimal_size()
|
H A D | metaslab.c | 2034 histogram[idx] += rt->rt_histogram[i] << (i - idx - shift); in metaslab_aux_histogram_add() 3105 segments += msp->ms_allocatable->rt_histogram[i]; in metaslab_weight_from_range_tree()
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | range_tree.h | 75 uint64_t rt_histogram[RANGE_TREE_HISTOGRAM_SIZE]; member
|
/freebsd/sys/contrib/openzfs/cmd/zdb/ |
H A D | zdb.c | 1649 dump_histogram(rt->rt_histogram, RANGE_TREE_HISTOGRAM_SIZE, 0); in dump_metaslab_stats()
|