[io_generator] Support mixed sequential and random io pattern

This commit is contained in:
Ming-Hung Tsai
2020-07-23 23:58:15 +08:00
parent 7ed013fcab
commit 061d966e7a
3 changed files with 88 additions and 11 deletions

View File

@@ -47,6 +47,7 @@ namespace {
base::sector_t offset;
boost::optional<base::sector_t> size;
boost::optional<base::sector_t> io_size;
boost::optional<unsigned> nr_seq_blocks;
};
bool flags::check_conformance() {
@@ -65,6 +66,14 @@ namespace {
return false;
}
if (nr_seq_blocks) {
if (!pattern.is_random()) {
cerr << "Cannot specify the sequence size"
" while doing non-random IO" << endl;
return false;
}
}
check_output_file_requirements(*output);
return true;
@@ -90,6 +99,7 @@ namespace {
opts.offset_ = fs.offset;
opts.size_ = *fs.size;
opts.io_size_ = !fs.io_size ? *fs.size : *fs.io_size;
opts.nr_seq_blocks_ = !fs.nr_seq_blocks ? 1 : *fs.nr_seq_blocks;
io_generator::ptr gen = create_io_generator(opts);
base::io io;
@@ -133,6 +143,7 @@ thin_generate_mappings_cmd::usage(std::ostream &out) const
<< " {--io-size} <io-size in sectors>\n"
<< " {--rw write|trim|randwrite|randtrim|randtw}\n"
<< " {--size} <size in sectors>\n"
<< " {--seq-nr} <max nr. of sequential ios>\n"
<< " {-V|--version}" << endl;
}
@@ -150,6 +161,7 @@ thin_generate_mappings_cmd::run(int argc, char **argv)
{ "offset", required_argument, NULL, 3 },
{ "size", required_argument, NULL, 4 },
{ "io-size", required_argument, NULL, 5 },
{ "seq-nr", required_argument, NULL, 6 },
{ "version", no_argument, NULL, 'V' },
{ NULL, no_argument, NULL, 0 }
};
@@ -184,6 +196,10 @@ thin_generate_mappings_cmd::run(int argc, char **argv)
fs.io_size = parse_uint64(optarg, "io_size");
break;
case 6:
fs.nr_seq_blocks = parse_uint64(optarg, "seq_nr");
break;
case 'V':
cout << THIN_PROVISIONING_TOOLS_VERSION << endl;
return 0;