diff options
author | Cy Schubert <[email protected]> | 2020-10-22 12:15:17 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2020-10-30 16:02:58 -0700 |
commit | 07c7899a373f4dd196dd866f039cf5f7adca574a (patch) | |
tree | 2f2be56c42ebcbfefc2a34bed71989abcfdb17af /cmd | |
parent | 79bfba2fa833c5ed5ad132e688256d4ed0831074 (diff) |
Restore identification of VDEVs using non-native block size
NAME STATE READ WRITE CKSUM
dsk02 ONLINE 0 0 0
mirror-0 ONLINE 0 0 0
ada1s4a ONLINE 0 0 0
ada2s4a ONLINE 0 0 0 block size: 512B configured, 4096B native
Reviewed-by: Matt Macy <[email protected]>
Reviewed-by: Toomas Soome <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed off by: Cy Schubert <[email protected]>
Closes #11088
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/zpool/zpool_main.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index f612db48d..83a9b5a5a 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -2254,6 +2254,13 @@ print_status_config(zpool_handle_t *zhp, status_cbdata_t *cb, const char *name, break; } color_end(); + } else if (children == 0 && !isspare && + getenv("ZPOOL_STATUS_NON_NATIVE_ASHIFT_IGNORE") == NULL && + VDEV_STAT_VALID(vs_physical_ashift, vsc) && + vs->vs_configured_ashift < vs->vs_physical_ashift) { + (void) printf( + gettext(" block size: %dB configured, %dB native"), + 1 << vs->vs_configured_ashift, 1 << vs->vs_physical_ashift); } /* The root vdev has the scrub/resilver stats */ |