Merge commit 'refs/top-bases/linux-zpios' into linux-zpios

This commit is contained in:
Brian Behlendorf 2009-01-15 15:56:09 -08:00
commit 4144f1ed75
1 changed files with 5 additions and 2 deletions

View File

@ -2938,15 +2938,18 @@ ztest_spa_import_export(char *oldname, char *newname)
nvlist_free(config);
}
static void
ztest_resume(spa_t *spa)
static void *
ztest_resume(void *arg)
{
spa_t *spa = arg;
if (spa_suspended(spa)) {
spa_vdev_state_enter(spa);
vdev_clear(spa, NULL);
(void) spa_vdev_state_exit(spa, NULL, 0);
zio_resume(spa);
}
return (NULL);
}
static void *