Illumos #1946: incorrect formatting when listing output of multiple pools with zpool iostat -v
Reviewed by: Richard Elling <richard.elling@richardelling.com> Reviewed by: Joshua M. Clulow <josh@sysmgr.org> Approved by: Richard Lowe <richlowe@richlowe.net> Reference to Illumos issue: https://www.illumos.org/issues/1946 Ported by: Richard Yao <ryao@cs.stonybrook.edu> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
parent
187632dcef
commit
95bcd51ecc
cmd/zpool
|
@ -21,6 +21,9 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
||||||
|
* Copyright 2011 Nexenta Systems, Inc. All rights reserved.
|
||||||
|
* Copyright (c) 2011 by Delphix. All rights reserved.
|
||||||
|
* Copyright (c) 2012 by Frederik Wessels. All rights reserved.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -2236,7 +2239,8 @@ get_namewidth(zpool_handle_t *zhp, void *data)
|
||||||
if (!cb->cb_verbose)
|
if (!cb->cb_verbose)
|
||||||
cb->cb_namewidth = strlen(zpool_get_name(zhp));
|
cb->cb_namewidth = strlen(zpool_get_name(zhp));
|
||||||
else
|
else
|
||||||
cb->cb_namewidth = max_width(zhp, nvroot, 0, 0);
|
cb->cb_namewidth = max_width(zhp, nvroot, 0,
|
||||||
|
cb->cb_namewidth);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue