View | Details | Raw Unified | Return to bug 221084
Collapse All | Expand All

(-)b/sys/boot/zfs/zfsimpl.c (-2 / +3 lines)
Lines 2084-2090 zfs_spa_init(spa_t *spa) Link Here
2084
2084
2085
	rc = check_mos_features(spa);
2085
	rc = check_mos_features(spa);
2086
	if (rc != 0) {
2086
	if (rc != 0) {
2087
		printf("ZFS: pool %s is not supported\n", spa->spa_name);
2087
		printf("ZFS: check_mos_features() returned %d for pool %s. Continuing\n",
2088
		    rc, spa->spa_name);
2089
		rc = 0;
2088
	}
2090
	}
2089
2091
2090
	return (rc);
2092
	return (rc);
2091
- 

Return to bug 221084