Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: cio: fix up the description of the command line options #11

Merged
merged 1 commit into from
Jan 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tools/cio.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,14 @@ static void cio_help(int rc)
printf(" -l, --list\t\tlist environment content\n");
printf(" -F, --full-sync\tforce data flush to disk\n");
printf(" -k, --checksum\tenable CRC32 checksum\n");
printf(" -f, --filename=FILE\tset name of file to create\n");
printf(" -p, --perf=FILE\trun performance test\n");
printf(" -w, --perf-writes=N\tset number of writes for performance mode "
"(default: 5)\n");
printf(" -f, --perf-files=N\tset number of files to create on "
printf(" -e, --perf-files=N\tset number of files to create on "
"performance mode (default: 1000)\n");
printf(" -S, --silent\t\tmake chunkio quiet during the operation\n");
printf(" -v, --verbose\t\tincrease logging verbosity\n");
printf(" -h, --help\t\tprint this help\n");
exit(rc);
}
Expand Down