loader: clean up the noise around log device

We are ignoring log device but we also do want to have clean code.
This commit is contained in:
Toomas Soome 2019-11-05 18:35:13 +00:00
parent 9a3ea7594b
commit ae3f74e763
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=354364
2 changed files with 0 additions and 17 deletions

View File

@ -669,14 +669,6 @@ zfs_dev_open(struct open_file *f, ...)
spa = spa_find_by_guid(dev->pool_guid);
if (!spa)
return (ENXIO);
#if 0
/* Apparently too many are using slog with boot pool. */
if (spa->spa_with_log) {
printf("Reading pool %s is not supported due to log device.\n",
spa->spa_name);
return (ENXIO);
}
#endif
mount = malloc(sizeof(*mount));
if (mount == NULL)
rv = ENOMEM;

View File

@ -1774,12 +1774,6 @@ vdev_probe(vdev_phys_read_t *_read, void *read_priv, spa_t **spap)
return (EIO);
}
if (nvlist_find(nvlist, ZPOOL_CONFIG_IS_LOG, DATA_TYPE_UINT64,
NULL, &val) == 0 && val != 0) {
free(nvlist);
return (EIO);
}
/*
* Create the pool if this is the first time we've seen it.
*/
@ -1854,9 +1848,6 @@ vdev_probe(vdev_phys_read_t *_read, void *read_priv, spa_t **spap)
return (EIO);
}
/*
* We do not support reading pools with log device.
*/
if (vdev->v_islog)
spa->spa_with_log = vdev->v_islog;