diff options
-rw-r--r-- | cmd/zpool/zpool_main.c | 5 | ||||
-rw-r--r-- | man/man8/zpool.8 | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index c52bd3ed7..320069873 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -3970,7 +3970,10 @@ status_callback(zpool_handle_t *zhp, void *data) * If we were given 'zpool status -x', only report those pools with * problems. */ - if (reason == ZPOOL_STATUS_OK && cbp->cb_explain) { + if (cbp->cb_explain && + (reason == ZPOOL_STATUS_OK || + reason == ZPOOL_STATUS_VERSION_OLDER || + reason == ZPOOL_STATUS_FEAT_DISABLED)) { if (!cbp->cb_allpools) { (void) printf(gettext("pool '%s' is healthy\n"), zpool_get_name(zhp)); diff --git a/man/man8/zpool.8 b/man/man8/zpool.8 index d5f61cfed..c16cd6897 100644 --- a/man/man8/zpool.8 +++ b/man/man8/zpool.8 @@ -1604,7 +1604,7 @@ If a scrub or resilver is in progress, this command reports the percentage done .ad .RS 6n .rt -Only display status for pools that are exhibiting errors or are otherwise unavailable. +Only display status for pools that are exhibiting errors or are otherwise unavailable. Warnings about pools not using the latest on-disk format will not be included. .RE .sp |