spelling: app

Part of #2256

* gracefully
* occurred
* output
* right

Change-Id: I1419b5001ab04109f5f16927f050f5d16242232f
Signed-off-by: Josh Soref <jsoref@gmail.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10398
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Community-CI: Mellanox Build Bot
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
This commit is contained in:
Josh Soref 2021-11-24 20:40:57 -05:00 committed by Tomasz Zawadzki
parent 0e47b2e4f3
commit 6bbb11b16b
2 changed files with 5 additions and 5 deletions

View File

@ -227,7 +227,7 @@ dd_show_progress(uint64_t offset, uint64_t length, bool finish)
return;
}
/* Find the rigth unit for size displaying (B vs kB vs MB vs GB vs TB) */
/* Find the right unit for size displaying (B vs kB vs MB vs GB vs TB) */
while (size > 1024 * 10) {
size >>= 10;
size_unit <<= 10;
@ -247,7 +247,7 @@ dd_show_progress(uint64_t offset, uint64_t length, bool finish)
i = 0;
/* Find the rigth unit for speed displaying (Bps vs kBps vs MBps vs GBps vs TBps) */
/* Find the right unit for speed displaying (Bps vs kBps vs MBps vs GBps vs TBps) */
while (tmp_speed > 1024) {
tmp_speed >>= 10;
speed_unit <<= 10;
@ -1000,7 +1000,7 @@ usage(void)
printf(" --of Output file. Must specify either --of or --ob.\n");
printf(" --ob Output bdev. Must specify either --of or --ob.\n");
printf(" --iflag Input file flags.\n");
printf(" --oflag Onput file flags.\n");
printf(" --oflag Output file flags.\n");
printf(" --bs I/O unit size (default: %" PRId64 ")\n", g_opts.io_unit_size);
printf(" --qd Queue depth (default: %d)\n", g_opts.queue_depth);
printf(" --count I/O unit count. The number of I/O units to copy. (default: all)\n");
@ -1167,7 +1167,7 @@ main(int argc, char **argv)
rc = spdk_app_start(&opts, dd_run, NULL);
if (rc) {
SPDK_ERRLOG("Error occured while performing copy\n");
SPDK_ERRLOG("Error occurred while performing copy\n");
}
dd_free();

View File

@ -2896,7 +2896,7 @@ setup_ncurses(void)
exit(1);
}
/* Handle signals to exit gracfully cleaning up ncurses */
/* Handle signals to exit gracefully cleaning up ncurses */
(void) signal(SIGINT, finish);
(void) signal(SIGPIPE, finish);
(void) signal(SIGABRT, finish);