* Load the space map disk into the specified range tree. Segments of maptype * are added to the range tree, other segment types are removed. */
| 444 | * are added to the range tree, other segment types are removed. |
| 445 | */ |
| 446 | int |
| 447 | space_map_load(space_map_t *sm, range_tree_t *rt, maptype_t maptype) |
| 448 | { |
| 449 | return (space_map_load_length(sm, rt, maptype, space_map_length(sm))); |
| 450 | } |
| 451 | |
| 452 | void |
| 453 | space_map_histogram_clear(space_map_t *sm) |
no test coverage detected