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

This commit is contained in:
Brian Behlendorf 2010-07-21 14:20:27 -07:00
commit c5a97e4598
1 changed files with 2 additions and 3 deletions

View File

@ -1135,9 +1135,8 @@ zfs_ioc_pool_destroy(struct file *filp, zfs_cmd_t *zc)
{
int error;
zfs_log_history(zc);
error = zvol_remove_minors(zc->zc_name);
if (error == 0)
error = spa_destroy(zc->zc_name);
(void) zvol_remove_minors(zc->zc_name);
error = spa_destroy(zc->zc_name);
return (error);
}