diff options
| author | Richard Yao <ryao@gentoo.org> | 2014-05-17 13:35:10 +0000 |
|---|---|---|
| committer | Brian Behlendorf <behlendorf1@llnl.gov> | 2014-05-19 17:16:29 +0000 |
| commit | 1cbae971c5ef215d1036b65511a839879e446c4c (patch) | |
| tree | f2be27e185a597c2621d723a100a631228a450cc | |
| parent | bc25c9325b0e5ced897b9820dad239539d561ec9 (diff) | |
| -rw-r--r-- | cmd/zpool/zpool_main.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cmd/zpool/zpool_main.c b/cmd/zpool/zpool_main.c index e38213c8520e..aa166a9c03fe 100644 --- a/cmd/zpool/zpool_main.c +++ b/cmd/zpool/zpool_main.c @@ -4389,6 +4389,17 @@ status_callback(zpool_handle_t *zhp, void *data) "'zpool clear'.\n")); break; + case ZPOOL_STATUS_HOSTID_MISMATCH: + (void) printf(gettext("status: Mismatch between pool hostid " + "and system hostid on imported pool.\n\tThis pool was " + "previously imported into a system with a different " + "hostid,\n\tand then was verbatim imported into this " + "system.\n")); + (void) printf(gettext("action: Export this pool on all systems " + "on which it is imported.\n" + "\tThen import it to correct the mismatch.\n")); + break; + case ZPOOL_STATUS_ERRATA: (void) printf(gettext("status: Errata #%d detected.\n"), errata); |
