There are a few options that aren't documented in the import section of the zpool manpage (at least not in the one that we have with the additional updates, and potentially not in the OpenSolaris manpage either). They are [according to the out of date comment above cddl/contrib/opensolaris/cmd/zpool/zpool_do_import()]: case 'F': do_rewind = B_TRUE; break; case 'm': flags |= ZFS_IMPORT_MISSING_LOG; break; case 'N': flags |= ZFS_IMPORT_ONLY; break; case 'T': errno = 0; txg = strtoull(optarg, &endptr, 10); if (errno != 0 || *endptr != '\0') { (void) fprintf(stderr, gettext("invalid txg value\n")); usage(B_FALSE); } rewind_policy = ZPOOL_DO_REWIND | ZPOOL_EXTREME_REWIND; break; case 'V': flags |= ZFS_IMPORT_VERBATIM; break; case 'X': xtreme_rewind = B_TRUE; break;
Responsible Changed From-To: freebsd-doc->mm This should be checked by someone more familiar with ZFS code. I've compared the zpool(8) synopsis with the case labels from the PR description and I've found that the last three options (T, V, X) are not there. @mm: Can you take a look at this? Thanks!
Responsible Changed From-To: mm->araujo Let me take care of it, I'm working to document zpool features, and for those 3, I have a patch that I'll provide this weekend.
Responsible Changed From-To: araujo->mm Martin has the power to move forward with this PR.
-T, -V, -X aren't documented in zpool(8); everything else seems to be accounted for now. Reassigning to freebsd-fs@