svn commit: r325149 - stable/11/cddl/contrib/opensolaris/lib/libzfs/common
Andriy Gapon
avg at FreeBSD.org
Mon Oct 30 10:32:37 UTC 2017
Author: avg
Date: Mon Oct 30 10:32:36 2017
New Revision: 325149
URL: https://svnweb.freebsd.org/changeset/base/325149
Log:
MFC r324347: MFV r316933: 5142 libzfs support raidz root pool (loader project)
FreeBSD note: we have long supported this feature, this commit only
removes a small difference in libzfs.
Modified:
stable/11/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c
==============================================================================
--- stable/11/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c Mon Oct 30 10:29:31 2017 (r325148)
+++ stable/11/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c Mon Oct 30 10:32:36 2017 (r325149)
@@ -2295,6 +2295,7 @@ vdev_get_physpaths(nvlist_t *nv, char *physpath, size_
return (ret);
}
} else if (strcmp(type, VDEV_TYPE_MIRROR) == 0 ||
+ strcmp(type, VDEV_TYPE_RAIDZ) == 0 ||
strcmp(type, VDEV_TYPE_REPLACING) == 0 ||
(is_spare = (strcmp(type, VDEV_TYPE_SPARE) == 0))) {
nvlist_t **child;
More information about the svn-src-all
mailing list