test/reset: Remove unused usage.

Here "-m " is not used or related.

so remove it.

Signed-off-by: yidong0635 <dongx.yi@intel.com>
Change-Id: Ic8700bd0a262bb70b6116bbee86330eece5c03b0
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13879
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
yidong0635 2022-08-05 17:14:46 +08:00 committed by Jim Harris
parent 0c980660b6
commit 62378c24be

View File

@ -298,7 +298,6 @@ usage(char *program_name)
printf("\t\t(read, write, randread, randwrite, rw, randrw)]\n");
printf("\t[-M rwmixread (100 for reads, 0 for writes)]\n");
printf("\t[-t time in seconds(should be larger than 15 seconds)]\n");
printf("\t[-m max completions per poll]\n");
printf("\t\t(default:0 - unlimited)\n");
}
@ -354,7 +353,7 @@ parse_args(int argc, char **argv)
g_time_in_sec = 0;
g_rw_percentage = -1;
while ((op = getopt(argc, argv, "m:q:s:t:w:M:")) != -1) {
while ((op = getopt(argc, argv, "q:s:t:w:M:")) != -1) {
if (op == 'w') {
workload_type = optarg;
} else if (op == '?') {