]> git.proxmox.com Git - mirror_zfs.git/commitdiff
zpool: Change base URL for ZFS messages to openzfs-docs
authorRyan Moeller <ryan@iXsystems.com>
Thu, 27 Aug 2020 04:43:06 +0000 (00:43 -0400)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 27 Aug 2020 23:06:57 +0000 (16:06 -0700)
Reviewed-by: George Melikov <mail@gmelikov.ru>
Reviewed-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #10820

cmd/zpool/zpool_main.c
include/sys/fs/zfs.h
lib/libzfs/libzfs_sendrecv.c
module/zfs/spa.c

index f3756a5d95470d8a1a48b63f45b2ecc6be4736bd..adbb78a8effda3cb50c4f2aa90388bdb6fd71515 100644 (file)
@@ -2816,7 +2816,8 @@ show_import(nvlist_t *config)
 
        if (msgid != NULL) {
                (void) printf(gettext(
-                   "   see: https://zfsonlinux.org/msg/%s\n"), msgid);
+                   "   see: https://openzfs.github.io/openzfs-docs/msg/%s\n"),
+                   msgid);
        }
 
        (void) printf(gettext(" config:\n\n"));
@@ -7804,7 +7805,7 @@ print_dedup_stats(nvlist_t *config)
  *        pool: tank
  *     status: DEGRADED
  *     reason: One or more devices ...
- *         see: https://zfsonlinux.org/msg/ZFS-xxxx-01
+ *         see: https://openzfs.github.io/openzfs-docs/msg/ZFS-xxxx-01
  *     config:
  *             mirror          DEGRADED
  *                c1t0d0       OK
@@ -8193,7 +8194,9 @@ status_callback(zpool_handle_t *zhp, void *data)
        if (msgid != NULL) {
                printf("   ");
                printf_color(ANSI_BOLD, gettext("see:"));
-               printf(gettext(" https://zfsonlinux.org/msg/%s\n"), msgid);
+               printf(gettext(
+                   " https://openzfs.github.io/openzfs-docs/msg/%s\n"),
+                   msgid);
        }
 
        if (config != NULL) {
index d3acd674a6c6a0d92f3d5c284b1267a5f4faaea8..f6f633a95b7e9c6ebedcbefb563410f215706730 100644 (file)
@@ -1013,10 +1013,10 @@ typedef struct vdev_rebuild_stat {
 } vdev_rebuild_stat_t;
 
 /*
- * Errata described by https://zfsonlinux.org/msg/ZFS-8000-ER.  The ordering
- * of this enum must be maintained to ensure the errata identifiers map to
- * the correct documentation.  New errata may only be appended to the list
- * and must contain corresponding documentation at the above link.
+ * Errata described by https://openzfs.github.io/openzfs-docs/msg/ZFS-8000-ER.
+ * The ordering of this enum must be maintained to ensure the errata identifiers
+ * map to the correct documentation.  New errata may only be appended to the
+ * list and must contain corresponding documentation at the above link.
  */
 typedef enum zpool_errata {
        ZPOOL_ERRATA_NONE,
index e5af6453b0efd12959a2bf06a044bef4da86f6f6..b17b105ca34b863b5942d193ef35c9f6746318ee 100644 (file)
@@ -4850,7 +4850,8 @@ zfs_receive_one(libzfs_handle_t *hdl, int infd, const char *tosnap,
                case ZFS_ERR_FROM_IVSET_GUID_MISSING:
                        zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
                            "IV set guid missing. See errata %u at "
-                           "https://zfsonlinux.org/msg/ZFS-8000-ER."),
+                           "https://openzfs.github.io/openzfs-docs/msg/"
+                           "ZFS-8000-ER."),
                            ZPOOL_ERRATA_ZOL_8308_ENCRYPTION);
                        (void) zfs_error(hdl, EZFS_BADSTREAM, errbuf);
                        break;
index 1e3728d93cee13e508bdf0b4ddd19f385e4ac8e4..75ff398d17c7025286bbe8951228e2201588c590 100644 (file)
@@ -3201,7 +3201,8 @@ spa_verify_host(spa_t *spa, nvlist_t *mos_config)
                        cmn_err(CE_WARN, "pool '%s' could not be "
                            "loaded as it was last accessed by "
                            "another system (host: %s hostid: 0x%llx). "
-                           "See: http://illumos.org/msg/ZFS-8000-EY",
+                           "See: https://openzfs.github.io/openzfs-docs/msg/"
+                           "ZFS-8000-EY",
                            spa_name(spa), hostname, (u_longlong_t)hostid);
                        spa_load_failed(spa, "hostid verification failed: pool "
                            "last accessed by host: %s (hostid: 0x%llx)",