diff options
author | Chris Siden <[email protected]> | 2012-01-23 18:43:32 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-09-19 13:39:05 -0700 |
commit | 1bd201e70d57464fd26bf9089ea4b44fd49e4f2d (patch) | |
tree | f6789c1bbdfc94b8a8220df2cd23a93305e4b459 /module/zfs/vdev_root.c | |
parent | 95fd8c9a7f979e4c4941d329e6457cc84a81edfa (diff) |
Illumos #1948: zpool list should show more detailed pool info
Reviewed by: Adam Leventhal <[email protected]>
Reviewed by: Matt Ahrens <[email protected]>
Reviewed by: Eric Schrock <[email protected]>
Reviewed by: Richard Lowe <[email protected]>
Reviewed by: Albert Lee <[email protected]>
Reviewed by: Dan McDonald <[email protected]>
Reviewed by: Garrett D'Amore <[email protected]>
Approved by: Eric Schrock <[email protected]>
References:
https://www.illumos.org/issues/1948
Ported by: Martin Matuska <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #685
Diffstat (limited to 'module/zfs/vdev_root.c')
-rw-r--r-- | module/zfs/vdev_root.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/module/zfs/vdev_root.c b/module/zfs/vdev_root.c index d7ca99a3d..5241b0215 100644 --- a/module/zfs/vdev_root.c +++ b/module/zfs/vdev_root.c @@ -23,6 +23,10 @@ * Use is subject to license terms. */ +/* + * Copyright (c) 2012 by Delphix. All rights reserved. + */ + #include <sys/zfs_context.h> #include <sys/spa.h> #include <sys/vdev_impl.h> @@ -50,7 +54,8 @@ too_many_errors(vdev_t *vd, int numerrors) } static int -vdev_root_open(vdev_t *vd, uint64_t *asize, uint64_t *ashift) +vdev_root_open(vdev_t *vd, uint64_t *asize, uint64_t *max_asize, + uint64_t *ashift) { int lasterror = 0; int numerrors = 0; @@ -78,6 +83,7 @@ vdev_root_open(vdev_t *vd, uint64_t *asize, uint64_t *ashift) } *asize = 0; + *max_asize = 0; *ashift = 0; return (0); |