[thin_check (rust)] --superblock-only, --skip-mappings, INFO fields

This commit is contained in:
Joe Thornber 2020-09-24 13:55:58 +01:00
parent 34052c540c
commit 66b6a1ba48
3 changed files with 33 additions and 24 deletions

View File

@ -26,8 +26,15 @@ fn main() {
.help("Only check the superblock.")
.long("super-block-only")
.value_name("SB_ONLY"),
) .arg(
Arg::with_name("AUTO_REPAIR")
)
.arg(
Arg::with_name("SKIP_MAPPINGS")
.help("Don't check the mapping tree")
.long("skip-mappings")
.value_name("SKIP_MAPPINGS"),
)
.arg(
Arg::with_name("AUTO_REPAIR")
.help("Auto repair trivial issues.")
.long("auto-repair"),
)
@ -88,6 +95,8 @@ fn main() {
let opts = ThinCheckOptions {
dev: &input_file,
async_io: !matches.is_present("SYNC_IO"),
sb_only: matches.is_present("SB_ONLY"),
skip_mappings: matches.is_present("SKIP_MAPPINGS"),
ignore_non_fatal: matches.is_present("IGNORE_NON_FATAL"),
auto_repair: matches.is_present("AUTO_REPAIR"),
report,

View File

@ -961,22 +961,6 @@ where
}
}
/*
pub fn walk_threaded<NV, V>(
path: &mut Vec<u64>,
w: Arc<BTreeWalker>,
_pool: &ThreadPool,
visitor: Arc<NV>,
root: u64,
) -> Result<()>
where
NV: NodeVisitor<V> + Send + Sync + 'static,
V: Unpack,
{
w.walk(path, visitor.as_ref(), root)
}
*/
//------------------------------------------
struct ValueCollector<V> {

View File

@ -177,7 +177,7 @@ fn check_space_map(
let b = &blocks[n];
match b {
Err(_e) => {
todo!();
return Err(anyhow!("Unable to read bitmap block"));
}
Ok(b) => {
if checksum::metadata_block_type(&b.get_data()) != checksum::BT::BITMAP {
@ -252,7 +252,7 @@ fn repair_space_map(ctx: &Context, entries: Vec<BitmapLeak>, sm: ASpaceMap) -> R
let mut i = 0;
for rb in rblocks {
if rb.is_err() {
todo!();
return Err(anyhow!("Unable to reread bitmap blocks for repair"));
} else {
let b = rb.unwrap();
let be = &entries[i];
@ -310,6 +310,8 @@ const MAX_CONCURRENT_IO: u32 = 1024;
pub struct ThinCheckOptions<'a> {
pub dev: &'a Path,
pub async_io: bool,
pub sb_only: bool,
pub skip_mappings: bool,
pub ignore_non_fatal: bool,
pub auto_repair: bool,
pub report: Arc<Report>,
@ -377,7 +379,6 @@ fn check_mapping_bottom_level(
let mut failed = false;
if roots.len() > 64 {
ctx.report.info("spreading load across devices");
let errs = Arc::new(Mutex::new(Vec::new()));
for (_thin_id, (path, root)) in roots {
let data_sm = data_sm.clone();
@ -397,11 +398,10 @@ fn check_mapping_bottom_level(
ctx.pool.join();
let errs = Arc::try_unwrap(errs).unwrap().into_inner().unwrap();
if errs.len() > 0 {
eprintln!("{}", aggregate_error(errs));
ctx.report.fatal(&format!("{}", aggregate_error(errs)));
failed = true;
}
} else {
ctx.report.info("spreading load within device");
for (_thin_id, (path, root)) in roots {
let w = w.clone();
let data_sm = data_sm.clone();
@ -411,7 +411,7 @@ fn check_mapping_bottom_level(
if let Err(e) = walk_threaded(&mut path, w, &ctx.pool, v, root) {
failed = true;
eprintln!("{}", e);
ctx.report.fatal(&format!("{}", e));
}
}
}
@ -470,6 +470,13 @@ pub fn check(opts: ThinCheckOptions) -> Result<()> {
// superblock
let sb = read_superblock(engine.as_ref(), SUPERBLOCK_LOCATION)?;
report.info(&format!("TRANSACTION_ID={}", sb.transaction_id));
if opts.sb_only {
return Ok(());
}
let metadata_root = unpack::<SMRoot>(&sb.metadata_sm_root[0..])?;
let mut path = Vec::new();
path.push(0);
@ -507,6 +514,10 @@ pub fn check(opts: ThinCheckOptions) -> Result<()> {
sb.mapping_root,
)?;
if opts.skip_mappings {
return Ok(());
}
// mapping bottom level
let root = unpack::<SMRoot>(&sb.data_sm_root[0..])?;
let data_sm = core_sm(root.nr_blocks, nr_devs as u32);
@ -539,6 +550,11 @@ pub fn check(opts: ThinCheckOptions) -> Result<()> {
report.set_sub_title("metadata space map");
let root = unpack::<SMRoot>(&sb.metadata_sm_root[0..])?;
report.info(&format!(
"METADATA_FREE_BLOCKS={}",
root.nr_blocks - root.nr_allocated
));
let b = engine.read(root.bitmap_root)?;
metadata_sm.lock().unwrap().inc(root.bitmap_root, 1)?;
let entries = unpack::<MetadataIndex>(b.get_data())?.indexes;