summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2016-05-27 21:12:25 +0000
committerngie <ngie@FreeBSD.org>2016-05-27 21:12:25 +0000
commita612eea8452891ea8723be5921be086fc2424fe8 (patch)
treef6043cc74cb82ad0612d285a94800f07257277f6 /tools
parentb4330c94fcd0e417cbe1376a4acbe3838103ae18 (diff)
downloadFreeBSD-src-a612eea8452891ea8723be5921be086fc2424fe8.zip
FreeBSD-src-a612eea8452891ea8723be5921be086fc2424fe8.tar.gz
Update usage(..)
- Document missing options - Sync options with ioatcontrol(8). - Make it clear that the first 2 parameters are always required. MFC after: 1 week Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/ioat/ioatcontrol.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/tools/tools/ioat/ioatcontrol.c b/tools/tools/ioat/ioatcontrol.c
index 32890f8..8556217 100644
--- a/tools/tools/ioat/ioatcontrol.c
+++ b/tools/tools/ioat/ioatcontrol.c
@@ -49,14 +49,19 @@ static void
usage(void)
{
- printf("Usage: %s [-E|-f|-m] OPTIONS <channel #> <txns> [<bufsize> "
+ printf("Usage: %s [-c period] [-EfmVz] channel-number num-txns [<bufsize> "
"[<chain-len> [duration]]]\n", getprogname());
- printf(" %s -r [-v] OPTIONS <channel #> <addr> [<bufsize>]\n\n",
+ printf(" %s -r [-c period] [-vVwz] channel-number address [<bufsize>]\n\n",
getprogname());
- printf(" OPTIONS:\n");
- printf(" -c <period> - Enable interrupt coalescing (us)\n");
- printf(" -V - Enable verification\n");
- printf(" -z - Zero device stats before test\n");
+ printf(" -c period - Enable interrupt coalescing (us) (default: 0)\n");
+ printf(" -E - Test non-contiguous 8k copy.\n");
+ printf(" -f - Test block fill (default: DMA copy).\n");
+ printf(" -m - Test memcpy instead of DMA.\n");
+ printf(" -r - Issue DMA to or from a specific address.\n");
+ printf(" -V - Enable verification\n");
+ printf(" -v - <address> is a kernel virtual address\n");
+ printf(" -w - Write to the specified address\n");
+ printf(" -z - Zero device stats before test\n");
exit(EX_USAGE);
}
OpenPOWER on IntegriCloud