Consistently use parsable instead of parseable

This is a purely cosmetical change, to consistently prefer one of
two (both acceptable) choises for the word parsable in documentation and
code. I don't really care which to use, but acording to wiktionary
https://en.wiktionary.org/wiki/parsable#English parsable is preferred.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #4682
This commit is contained in:
Christer Ekholm 2016-05-23 19:20:42 +02:00 committed by Brian Behlendorf
parent 9baaa7deae
commit 3491d6eb06
4 changed files with 7 additions and 7 deletions

View File

@ -172,7 +172,7 @@ usage(void)
"-e to specify path to vdev dir\n"); "-e to specify path to vdev dir\n");
(void) fprintf(stderr, " -x <dumpdir> -- " (void) fprintf(stderr, " -x <dumpdir> -- "
"dump all read blocks into specified directory\n"); "dump all read blocks into specified directory\n");
(void) fprintf(stderr, " -P print numbers in parseable form\n"); (void) fprintf(stderr, " -P print numbers in parsable form\n");
(void) fprintf(stderr, " -t <txg> -- highest txg to use when " (void) fprintf(stderr, " -t <txg> -- highest txg to use when "
"searching for uberblocks\n"); "searching for uberblocks\n");
(void) fprintf(stderr, " -I <number of inflight I/Os> -- " (void) fprintf(stderr, " -I <number of inflight I/Os> -- "

View File

@ -3852,7 +3852,7 @@ zpool_do_iostat(int argc, char **argv)
zpool_list_t *list; zpool_list_t *list;
boolean_t verbose = B_FALSE; boolean_t verbose = B_FALSE;
boolean_t latency = B_FALSE, histo = B_FALSE; boolean_t latency = B_FALSE, histo = B_FALSE;
boolean_t queues = B_FALSE, parseable = B_FALSE, scripted = B_FALSE; boolean_t queues = B_FALSE, parsable = B_FALSE, scripted = B_FALSE;
boolean_t omit_since_boot = B_FALSE; boolean_t omit_since_boot = B_FALSE;
boolean_t guid = B_FALSE; boolean_t guid = B_FALSE;
boolean_t follow_links = B_FALSE; boolean_t follow_links = B_FALSE;
@ -3884,7 +3884,7 @@ zpool_do_iostat(int argc, char **argv)
verbose = B_TRUE; verbose = B_TRUE;
break; break;
case 'p': case 'p':
parseable = B_TRUE; parsable = B_TRUE;
break; break;
case 'l': case 'l':
latency = B_TRUE; latency = B_TRUE;
@ -3914,7 +3914,7 @@ zpool_do_iostat(int argc, char **argv)
argc -= optind; argc -= optind;
argv += optind; argv += optind;
cb.cb_literal = parseable; cb.cb_literal = parsable;
cb.cb_scripted = scripted; cb.cb_scripted = scripted;
if (guid) if (guid)

View File

@ -1125,7 +1125,7 @@ Scripted mode. Do not display headers, and separate fields by a single tab inste
\fB\fB-p\fR\fR \fB\fB-p\fR\fR
.ad .ad
.RS 6n .RS 6n
Display numbers in parseable (exact) values. Display numbers in parsable (exact) values.
.RE .RE
.sp .sp
@ -1570,7 +1570,7 @@ Display real paths for vdevs resolving all symbolic links. This can be used to l
\fB\fB-p\fR\fR \fB\fB-p\fR\fR
.ad .ad
.RS 12n .RS 12n
Display numbers in parseable (exact) values. Time values are in nanoseconds. Display numbers in parsable (exact) values. Time values are in nanoseconds.
.RE .RE
.sp .sp

View File

@ -36,7 +36,7 @@
# #
# DESCRIPTION: # DESCRIPTION:
# Executing 'zpool iostat' command with various combinations of extended # Executing 'zpool iostat' command with various combinations of extended
# stats (-vqL), parseable/script options (-pH), and misc lists of pools # stats (-vqL), parsable/script options (-pH), and misc lists of pools
# and vdevs. # and vdevs.
# #
# STRATEGY: # STRATEGY: