Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zfs/
H A Drange_tree.c119 if (hist[i] != rt->rt_histogram[i]) { in zfs_range_tree_stat_verify()
122 (u_longlong_t)rt->rt_histogram[i]); in zfs_range_tree_stat_verify()
124 VERIFY3U(hist[i], ==, rt->rt_histogram[i]); in zfs_range_tree_stat_verify()
136 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in zfs_range_tree_stat_incr()
138 rt->rt_histogram[idx]++; in zfs_range_tree_stat_incr()
139 ASSERT3U(rt->rt_histogram[idx], !=, 0); in zfs_range_tree_stat_incr()
150 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in zfs_range_tree_stat_decr()
152 ASSERT3U(rt->rt_histogram[idx], !=, 0); in zfs_range_tree_stat_decr()
153 rt->rt_histogram[idx]--; in zfs_range_tree_stat_decr()
764 memset(rt->rt_histogram, 0, sizeof (rt->rt_histogram)); in zfs_range_tree_vacate()
H A Dspace_map.c473 if (rt->rt_histogram[i] != 0) in space_map_histogram_verify()
514 rt->rt_histogram[i] << (i - idx - sm->sm_shift); in space_map_histogram_add()
972 uint64_t *histogram = rt->rt_histogram; in space_map_estimate_optimal_size()
H A Dmetaslab.c2199 histogram[idx] += rt->rt_histogram[i] << (i - idx - shift); in metaslab_aux_histogram_add()
3293 segments += msp->ms_allocatable->rt_histogram[i]; in metaslab_weight_from_range_tree()
/freebsd/sys/contrib/openzfs/include/sys/
H A Drange_tree.h82 uint64_t rt_histogram[ZFS_RANGE_TREE_HISTOGRAM_SIZE]; member
/freebsd/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c1666 dump_histogram(rt->rt_histogram, ZFS_RANGE_TREE_HISTOGRAM_SIZE, 0); in dump_metaslab_stats()