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 VERIFY3UF(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()
134 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in zfs_range_tree_stat_incr()
136 rt->rt_histogram[idx]++; in zfs_range_tree_stat_incr()
137 ASSERT3U(rt->rt_histogram[idx], !=, 0); in zfs_range_tree_stat_incr()
148 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in zfs_range_tree_stat_decr()
150 ASSERT3U(rt->rt_histogram[idx], !=, 0); in zfs_range_tree_stat_decr()
151 rt->rt_histogram[idx]--; in zfs_range_tree_stat_decr()
762 memset(rt->rt_histogram, 0, sizeof (rt->rt_histogram)); in zfs_range_tree_vacate()
H A Dspace_map.c462 if (rt->rt_histogram[i] != 0) in space_map_histogram_verify()
503 rt->rt_histogram[i] << (i - idx - sm->sm_shift); in space_map_histogram_add()
961 uint64_t *histogram = rt->rt_histogram; in space_map_estimate_optimal_size()
H A Dmetaslab.c2220 histogram[idx] += rt->rt_histogram[i] << (i - idx - shift); in metaslab_aux_histogram_add()
3320 segments += msp->ms_allocatable->rt_histogram[i]; in metaslab_weight_from_range_tree()
/freebsd/sys/contrib/openzfs/include/sys/
H A Drange_tree.h72 uint64_t rt_histogram[ZFS_RANGE_TREE_HISTOGRAM_SIZE]; member
/freebsd/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c1856 dump_histogram(rt->rt_histogram, ZFS_RANGE_TREE_HISTOGRAM_SIZE, 0); in dump_metaslab_groups()