Lines Matching defs:count
27 * Extensions do not appear in this count until after commit has
30 int (*get_nr_blocks)(struct dm_space_map *sm, dm_block_t *count);
37 * have blocks with a zero reference count that will not be
40 int (*get_nr_free)(struct dm_space_map *sm, dm_block_t *count);
45 int (*set_count)(struct dm_space_map *sm, dm_block_t b, uint32_t count);
87 static inline int dm_sm_get_nr_blocks(struct dm_space_map *sm, dm_block_t *count)
89 return sm->get_nr_blocks(sm, count);
92 static inline int dm_sm_get_nr_free(struct dm_space_map *sm, dm_block_t *count)
94 return sm->get_nr_free(sm, count);
110 uint32_t count)
112 return sm->set_count(sm, b, count);