diff options
author | Akash B <[email protected]> | 2022-03-09 05:50:41 +0530 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-08 16:20:41 -0800 |
commit | 1282274f3355bcd11bdae911d9279ef1892f7061 (patch) | |
tree | b8130671b30f95ffa88f0539a9895ab4db86493e /include | |
parent | ce7a5dbf4b37a0ba28dd6911e1a17f039fdd4f4e (diff) |
Add physical device size to SIZE column in 'zpool list -v'
Add physical device size/capacity only for physical devices in
'zpool list -v' instead of displaying "-" in the SIZE column.
This would make it easier to see the individual device capacity and
to determine which spares are large enough to replace which devices.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Dipak Ghosh <[email protected]>
Signed-off-by: Akash B <[email protected]>
Closes #12561
Closes #13106
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/fs/zfs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/fs/zfs.h b/include/sys/fs/zfs.h index ab29b4e2e..f9fd5cf67 100644 --- a/include/sys/fs/zfs.h +++ b/include/sys/fs/zfs.h @@ -1185,6 +1185,7 @@ typedef struct vdev_stat { uint64_t vs_logical_ashift; /* vdev_logical_ashift */ uint64_t vs_physical_ashift; /* vdev_physical_ashift */ uint64_t vs_noalloc; /* allocations halted? */ + uint64_t vs_pspace; /* physical capacity */ } vdev_stat_t; #define VDEV_STAT_VALID(field, uint64_t_field_count) \ |