diff options
author | Tony Hutter <[email protected]> | 2017-06-22 09:39:01 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-06-22 09:39:01 -0700 |
commit | 29eb4942856da942f1482cba9326698f91eb8c1c (patch) | |
tree | 53f4fcb43dfce3ecb74b598fa04898c5b4114db8 /cmd | |
parent | d9ad3fea3bd0368b6af0b08ccc4de1b080e2bcb7 (diff) |
Dashes for zero latency values in zpool iostat -p
This prints dashes instead of zeros for zero latency values in
'zpool iostat -p'. You'll get zero latencies reported when the
disk is idle, but technically a zero latency is invalid, since you
can't measure the latency of doing nothing.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Giuseppe Di Natale <[email protected]>
Signed-off-by: Tony Hutter <[email protected]>
Closes #6210
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/zpool/zpool_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index 5fccd754b..2a68fe66f 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -3460,7 +3460,7 @@ print_iostat_latency(iostat_cbdata_t *cb, nvlist_t *oldnv, nva = calc_and_alloc_stats_ex(names, ARRAY_SIZE(names), oldnv, newnv); if (cb->cb_literal) - format = ZFS_NICENUM_RAW; + format = ZFS_NICENUM_RAWTIME; else format = ZFS_NICENUM_TIME; |