Merge commit 'refs/top-bases/linux-user-disk' into linux-user-disk
This commit is contained in:
commit
941807d6be
|
@ -2938,15 +2938,18 @@ ztest_spa_import_export(char *oldname, char *newname)
|
||||||
nvlist_free(config);
|
nvlist_free(config);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void *
|
||||||
ztest_resume(spa_t *spa)
|
ztest_resume(void *arg)
|
||||||
{
|
{
|
||||||
|
spa_t *spa = arg;
|
||||||
|
|
||||||
if (spa_suspended(spa)) {
|
if (spa_suspended(spa)) {
|
||||||
spa_vdev_state_enter(spa);
|
spa_vdev_state_enter(spa);
|
||||||
vdev_clear(spa, NULL);
|
vdev_clear(spa, NULL);
|
||||||
(void) spa_vdev_state_exit(spa, NULL, 0);
|
(void) spa_vdev_state_exit(spa, NULL, 0);
|
||||||
zio_resume(spa);
|
zio_resume(spa);
|
||||||
}
|
}
|
||||||
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void *
|
static void *
|
||||||
|
|
Loading…
Reference in New Issue