[thin_check] inc superblock and metadata snap in space map checking
This commit is contained in:
parent
9f6546f621
commit
50d1a3e7d2
@ -223,6 +223,18 @@ namespace {
|
|||||||
nested_output::nest _ = out.push();
|
nested_output::nest _ = out.push();
|
||||||
block_counter bc;
|
block_counter bc;
|
||||||
|
|
||||||
|
// Count the superblock
|
||||||
|
bc.inc(superblock_detail::SUPERBLOCK_LOCATION);
|
||||||
|
|
||||||
|
// Count the metadata snap, if present
|
||||||
|
if (sb.metadata_snap_ != superblock_detail::SUPERBLOCK_LOCATION) {
|
||||||
|
bc.inc(sb.metadata_snap_);
|
||||||
|
|
||||||
|
superblock_detail::superblock snap = read_superblock(bm, sb.metadata_snap_);
|
||||||
|
bc.inc(snap.data_mapping_root_);
|
||||||
|
bc.inc(snap.device_details_root_);
|
||||||
|
}
|
||||||
|
|
||||||
// Count the device tree
|
// Count the device tree
|
||||||
{
|
{
|
||||||
noop_value_counter<device_tree_detail::device_details> vc;
|
noop_value_counter<device_tree_detail::device_details> vc;
|
||||||
|
Loading…
Reference in New Issue
Block a user