Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/fs/zfs/
H A Drange_tree.c70 if (hist[i] != rt->rt_histogram[i]) { in range_tree_stat_verify()
72 i, hist, hist[i], rt->rt_histogram[i]); in range_tree_stat_verify()
74 VERIFY3U(hist[i], ==, rt->rt_histogram[i]); in range_tree_stat_verify()
86 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in range_tree_stat_incr()
89 rt->rt_histogram[idx]++; in range_tree_stat_incr()
90 ASSERT3U(rt->rt_histogram[idx], !=, 0); in range_tree_stat_incr()
101 sizeof (rt->rt_histogram) / sizeof (*rt->rt_histogram)); in range_tree_stat_decr()
104 ASSERT3U(rt->rt_histogram[idx], !=, 0); in range_tree_stat_decr()
105 rt->rt_histogram[idx]--; in range_tree_stat_decr()
392 bzero(rt->rt_histogram, sizeof (rt->rt_histogram)); in range_tree_vacate()
H A Dspace_map.c152 if (rt->rt_histogram[i] != 0) in space_map_histogram_verify()
195 rt->rt_histogram[i] << (i - idx - sm->sm_shift); in space_map_histogram_add()
/titanic_41/usr/src/uts/common/fs/zfs/sys/
H A Drange_tree.h55 uint64_t rt_histogram[RANGE_TREE_HISTOGRAM_SIZE]; member
/titanic_41/usr/src/cmd/zdb/
H A Dzdb.c732 dump_histogram(rt->rt_histogram, RANGE_TREE_HISTOGRAM_SIZE, 0); in dump_metaslab_stats()