View | Details | Raw Unified | Return to bug 198563 | Differences between
and this patch

Collapse All | Expand All

(-)b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c (-1 / +2 lines)
Lines 4127-4132 spa_import_rootpool(const char *name) Link Here
4127
		    &spa->spa_ubsync.ub_version) != 0)
4127
		    &spa->spa_ubsync.ub_version) != 0)
4128
			spa->spa_ubsync.ub_version = SPA_VERSION_INITIAL;
4128
			spa->spa_ubsync.ub_version = SPA_VERSION_INITIAL;
4129
	} else if ((spa = spa_lookup(name)) == NULL) {
4129
	} else if ((spa = spa_lookup(name)) == NULL) {
4130
		mutex_exit(&spa_namespace_lock);
4131
		nvlist_free(config);
4130
		cmn_err(CE_NOTE, "Cannot find the pool label for '%s'",
4132
		cmn_err(CE_NOTE, "Cannot find the pool label for '%s'",
4131
		    name);
4133
		    name);
4132
		return (EIO);
4134
		return (EIO);
4133
- 

Return to bug 198563