mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
zfsboottest: catch up with r241289, call zfs_spa_init() for all found pools
MFC after: 8 days
This commit is contained in:
parent
b6b87995cc
commit
8787f18062
1 changed files with 9 additions and 7 deletions
|
|
@ -136,19 +136,21 @@ main(int argc, char** argv)
|
|||
}
|
||||
}
|
||||
|
||||
STAILQ_FOREACH(spa, &zfs_pools, spa_link) {
|
||||
if (zfs_spa_init(spa)) {
|
||||
fprintf(stderr, "can't init pool %s\n", spa->spa_name);
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
spa_all_status();
|
||||
|
||||
spa = STAILQ_FIRST(&zfs_pools);
|
||||
if (spa == NULL) {
|
||||
fprintf(stderr, "no pools\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (zfs_spa_init(spa)) {
|
||||
fprintf(stderr, "can't init pool\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
spa_all_status();
|
||||
|
||||
#if 0
|
||||
uint64_t rootobj;
|
||||
if (zfs_get_root(spa, &rootobj)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue