xref: /illumos-gate/usr/src/uts/common/fs/zfs/dsl_destroy.c (revision 4a92375985c37d61406d66cd2b10ee642eb1f5e7)
13b2aab18SMatthew Ahrens /*
23b2aab18SMatthew Ahrens  * CDDL HEADER START
33b2aab18SMatthew Ahrens  *
43b2aab18SMatthew Ahrens  * The contents of this file are subject to the terms of the
53b2aab18SMatthew Ahrens  * Common Development and Distribution License (the "License").
63b2aab18SMatthew Ahrens  * You may not use this file except in compliance with the License.
73b2aab18SMatthew Ahrens  *
83b2aab18SMatthew Ahrens  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
93b2aab18SMatthew Ahrens  * or http://www.opensolaris.org/os/licensing.
103b2aab18SMatthew Ahrens  * See the License for the specific language governing permissions
113b2aab18SMatthew Ahrens  * and limitations under the License.
123b2aab18SMatthew Ahrens  *
133b2aab18SMatthew Ahrens  * When distributing Covered Code, include this CDDL HEADER in each
143b2aab18SMatthew Ahrens  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
153b2aab18SMatthew Ahrens  * If applicable, add the following below this CDDL HEADER, with the
163b2aab18SMatthew Ahrens  * fields enclosed by brackets "[]" replaced with your own identifying
173b2aab18SMatthew Ahrens  * information: Portions Copyright [yyyy] [name of copyright owner]
183b2aab18SMatthew Ahrens  *
193b2aab18SMatthew Ahrens  * CDDL HEADER END
203b2aab18SMatthew Ahrens  */
213b2aab18SMatthew Ahrens /*
223b2aab18SMatthew Ahrens  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23be6fd75aSMatthew Ahrens  * Copyright (c) 2013 by Delphix. All rights reserved.
243b2aab18SMatthew Ahrens  */
253b2aab18SMatthew Ahrens 
263b2aab18SMatthew Ahrens #include <sys/zfs_context.h>
273b2aab18SMatthew Ahrens #include <sys/dsl_userhold.h>
283b2aab18SMatthew Ahrens #include <sys/dsl_dataset.h>
293b2aab18SMatthew Ahrens #include <sys/dsl_synctask.h>
303b2aab18SMatthew Ahrens #include <sys/dmu_tx.h>
313b2aab18SMatthew Ahrens #include <sys/dsl_pool.h>
323b2aab18SMatthew Ahrens #include <sys/dsl_dir.h>
333b2aab18SMatthew Ahrens #include <sys/dmu_traverse.h>
343b2aab18SMatthew Ahrens #include <sys/dsl_scan.h>
353b2aab18SMatthew Ahrens #include <sys/dmu_objset.h>
363b2aab18SMatthew Ahrens #include <sys/zap.h>
373b2aab18SMatthew Ahrens #include <sys/zfeature.h>
383b2aab18SMatthew Ahrens #include <sys/zfs_ioctl.h>
393b2aab18SMatthew Ahrens #include <sys/dsl_deleg.h>
403b2aab18SMatthew Ahrens 
413b2aab18SMatthew Ahrens typedef struct dmu_snapshots_destroy_arg {
423b2aab18SMatthew Ahrens 	nvlist_t *dsda_snaps;
433b2aab18SMatthew Ahrens 	nvlist_t *dsda_successful_snaps;
443b2aab18SMatthew Ahrens 	boolean_t dsda_defer;
453b2aab18SMatthew Ahrens 	nvlist_t *dsda_errlist;
463b2aab18SMatthew Ahrens } dmu_snapshots_destroy_arg_t;
473b2aab18SMatthew Ahrens 
483b2aab18SMatthew Ahrens /*
493b2aab18SMatthew Ahrens  * ds must be owned.
503b2aab18SMatthew Ahrens  */
513b2aab18SMatthew Ahrens static int
523b2aab18SMatthew Ahrens dsl_destroy_snapshot_check_impl(dsl_dataset_t *ds, boolean_t defer)
533b2aab18SMatthew Ahrens {
543b2aab18SMatthew Ahrens 	if (!dsl_dataset_is_snapshot(ds))
55be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
563b2aab18SMatthew Ahrens 
573b2aab18SMatthew Ahrens 	if (dsl_dataset_long_held(ds))
58be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
593b2aab18SMatthew Ahrens 
603b2aab18SMatthew Ahrens 	/*
613b2aab18SMatthew Ahrens 	 * Only allow deferred destroy on pools that support it.
623b2aab18SMatthew Ahrens 	 * NOTE: deferred destroy is only supported on snapshots.
633b2aab18SMatthew Ahrens 	 */
643b2aab18SMatthew Ahrens 	if (defer) {
653b2aab18SMatthew Ahrens 		if (spa_version(ds->ds_dir->dd_pool->dp_spa) <
663b2aab18SMatthew Ahrens 		    SPA_VERSION_USERREFS)
67be6fd75aSMatthew Ahrens 			return (SET_ERROR(ENOTSUP));
683b2aab18SMatthew Ahrens 		return (0);
693b2aab18SMatthew Ahrens 	}
703b2aab18SMatthew Ahrens 
713b2aab18SMatthew Ahrens 	/*
723b2aab18SMatthew Ahrens 	 * If this snapshot has an elevated user reference count,
733b2aab18SMatthew Ahrens 	 * we can't destroy it yet.
743b2aab18SMatthew Ahrens 	 */
753b2aab18SMatthew Ahrens 	if (ds->ds_userrefs > 0)
76be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
773b2aab18SMatthew Ahrens 
783b2aab18SMatthew Ahrens 	/*
793b2aab18SMatthew Ahrens 	 * Can't delete a branch point.
803b2aab18SMatthew Ahrens 	 */
813b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_num_children > 1)
82be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
833b2aab18SMatthew Ahrens 
843b2aab18SMatthew Ahrens 	return (0);
853b2aab18SMatthew Ahrens }
863b2aab18SMatthew Ahrens 
873b2aab18SMatthew Ahrens static int
883b2aab18SMatthew Ahrens dsl_destroy_snapshot_check(void *arg, dmu_tx_t *tx)
893b2aab18SMatthew Ahrens {
903b2aab18SMatthew Ahrens 	dmu_snapshots_destroy_arg_t *dsda = arg;
913b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
923b2aab18SMatthew Ahrens 	nvpair_t *pair;
933b2aab18SMatthew Ahrens 	int error = 0;
943b2aab18SMatthew Ahrens 
953b2aab18SMatthew Ahrens 	if (!dmu_tx_is_syncing(tx))
963b2aab18SMatthew Ahrens 		return (0);
973b2aab18SMatthew Ahrens 
983b2aab18SMatthew Ahrens 	for (pair = nvlist_next_nvpair(dsda->dsda_snaps, NULL);
993b2aab18SMatthew Ahrens 	    pair != NULL; pair = nvlist_next_nvpair(dsda->dsda_snaps, pair)) {
1003b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
1013b2aab18SMatthew Ahrens 
1023b2aab18SMatthew Ahrens 		error = dsl_dataset_hold(dp, nvpair_name(pair),
1033b2aab18SMatthew Ahrens 		    FTAG, &ds);
1043b2aab18SMatthew Ahrens 
1053b2aab18SMatthew Ahrens 		/*
1063b2aab18SMatthew Ahrens 		 * If the snapshot does not exist, silently ignore it
1073b2aab18SMatthew Ahrens 		 * (it's "already destroyed").
1083b2aab18SMatthew Ahrens 		 */
1093b2aab18SMatthew Ahrens 		if (error == ENOENT)
1103b2aab18SMatthew Ahrens 			continue;
1113b2aab18SMatthew Ahrens 
1123b2aab18SMatthew Ahrens 		if (error == 0) {
1133b2aab18SMatthew Ahrens 			error = dsl_destroy_snapshot_check_impl(ds,
1143b2aab18SMatthew Ahrens 			    dsda->dsda_defer);
1153b2aab18SMatthew Ahrens 			dsl_dataset_rele(ds, FTAG);
1163b2aab18SMatthew Ahrens 		}
1173b2aab18SMatthew Ahrens 
1183b2aab18SMatthew Ahrens 		if (error == 0) {
1193b2aab18SMatthew Ahrens 			fnvlist_add_boolean(dsda->dsda_successful_snaps,
1203b2aab18SMatthew Ahrens 			    nvpair_name(pair));
1213b2aab18SMatthew Ahrens 		} else {
1223b2aab18SMatthew Ahrens 			fnvlist_add_int32(dsda->dsda_errlist,
1233b2aab18SMatthew Ahrens 			    nvpair_name(pair), error);
1243b2aab18SMatthew Ahrens 		}
1253b2aab18SMatthew Ahrens 	}
1263b2aab18SMatthew Ahrens 
1273b2aab18SMatthew Ahrens 	pair = nvlist_next_nvpair(dsda->dsda_errlist, NULL);
1283b2aab18SMatthew Ahrens 	if (pair != NULL)
1293b2aab18SMatthew Ahrens 		return (fnvpair_value_int32(pair));
1303b2aab18SMatthew Ahrens 	return (0);
1313b2aab18SMatthew Ahrens }
1323b2aab18SMatthew Ahrens 
1333b2aab18SMatthew Ahrens struct process_old_arg {
1343b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
1353b2aab18SMatthew Ahrens 	dsl_dataset_t *ds_prev;
1363b2aab18SMatthew Ahrens 	boolean_t after_branch_point;
1373b2aab18SMatthew Ahrens 	zio_t *pio;
1383b2aab18SMatthew Ahrens 	uint64_t used, comp, uncomp;
1393b2aab18SMatthew Ahrens };
1403b2aab18SMatthew Ahrens 
1413b2aab18SMatthew Ahrens static int
1423b2aab18SMatthew Ahrens process_old_cb(void *arg, const blkptr_t *bp, dmu_tx_t *tx)
1433b2aab18SMatthew Ahrens {
1443b2aab18SMatthew Ahrens 	struct process_old_arg *poa = arg;
1453b2aab18SMatthew Ahrens 	dsl_pool_t *dp = poa->ds->ds_dir->dd_pool;
1463b2aab18SMatthew Ahrens 
1473b2aab18SMatthew Ahrens 	if (bp->blk_birth <= poa->ds->ds_phys->ds_prev_snap_txg) {
1483b2aab18SMatthew Ahrens 		dsl_deadlist_insert(&poa->ds->ds_deadlist, bp, tx);
1493b2aab18SMatthew Ahrens 		if (poa->ds_prev && !poa->after_branch_point &&
1503b2aab18SMatthew Ahrens 		    bp->blk_birth >
1513b2aab18SMatthew Ahrens 		    poa->ds_prev->ds_phys->ds_prev_snap_txg) {
1523b2aab18SMatthew Ahrens 			poa->ds_prev->ds_phys->ds_unique_bytes +=
1533b2aab18SMatthew Ahrens 			    bp_get_dsize_sync(dp->dp_spa, bp);
1543b2aab18SMatthew Ahrens 		}
1553b2aab18SMatthew Ahrens 	} else {
1563b2aab18SMatthew Ahrens 		poa->used += bp_get_dsize_sync(dp->dp_spa, bp);
1573b2aab18SMatthew Ahrens 		poa->comp += BP_GET_PSIZE(bp);
1583b2aab18SMatthew Ahrens 		poa->uncomp += BP_GET_UCSIZE(bp);
1593b2aab18SMatthew Ahrens 		dsl_free_sync(poa->pio, dp, tx->tx_txg, bp);
1603b2aab18SMatthew Ahrens 	}
1613b2aab18SMatthew Ahrens 	return (0);
1623b2aab18SMatthew Ahrens }
1633b2aab18SMatthew Ahrens 
1643b2aab18SMatthew Ahrens static void
1653b2aab18SMatthew Ahrens process_old_deadlist(dsl_dataset_t *ds, dsl_dataset_t *ds_prev,
1663b2aab18SMatthew Ahrens     dsl_dataset_t *ds_next, boolean_t after_branch_point, dmu_tx_t *tx)
1673b2aab18SMatthew Ahrens {
1683b2aab18SMatthew Ahrens 	struct process_old_arg poa = { 0 };
1693b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
1703b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
1713b2aab18SMatthew Ahrens 	uint64_t deadlist_obj;
1723b2aab18SMatthew Ahrens 
1733b2aab18SMatthew Ahrens 	ASSERT(ds->ds_deadlist.dl_oldfmt);
1743b2aab18SMatthew Ahrens 	ASSERT(ds_next->ds_deadlist.dl_oldfmt);
1753b2aab18SMatthew Ahrens 
1763b2aab18SMatthew Ahrens 	poa.ds = ds;
1773b2aab18SMatthew Ahrens 	poa.ds_prev = ds_prev;
1783b2aab18SMatthew Ahrens 	poa.after_branch_point = after_branch_point;
1793b2aab18SMatthew Ahrens 	poa.pio = zio_root(dp->dp_spa, NULL, NULL, ZIO_FLAG_MUSTSUCCEED);
1803b2aab18SMatthew Ahrens 	VERIFY0(bpobj_iterate(&ds_next->ds_deadlist.dl_bpobj,
1813b2aab18SMatthew Ahrens 	    process_old_cb, &poa, tx));
1823b2aab18SMatthew Ahrens 	VERIFY0(zio_wait(poa.pio));
1833b2aab18SMatthew Ahrens 	ASSERT3U(poa.used, ==, ds->ds_phys->ds_unique_bytes);
1843b2aab18SMatthew Ahrens 
1853b2aab18SMatthew Ahrens 	/* change snapused */
1863b2aab18SMatthew Ahrens 	dsl_dir_diduse_space(ds->ds_dir, DD_USED_SNAP,
1873b2aab18SMatthew Ahrens 	    -poa.used, -poa.comp, -poa.uncomp, tx);
1883b2aab18SMatthew Ahrens 
1893b2aab18SMatthew Ahrens 	/* swap next's deadlist to our deadlist */
1903b2aab18SMatthew Ahrens 	dsl_deadlist_close(&ds->ds_deadlist);
1913b2aab18SMatthew Ahrens 	dsl_deadlist_close(&ds_next->ds_deadlist);
1923b2aab18SMatthew Ahrens 	deadlist_obj = ds->ds_phys->ds_deadlist_obj;
1933b2aab18SMatthew Ahrens 	ds->ds_phys->ds_deadlist_obj = ds_next->ds_phys->ds_deadlist_obj;
1943b2aab18SMatthew Ahrens 	ds_next->ds_phys->ds_deadlist_obj = deadlist_obj;
1953b2aab18SMatthew Ahrens 	dsl_deadlist_open(&ds->ds_deadlist, mos, ds->ds_phys->ds_deadlist_obj);
1963b2aab18SMatthew Ahrens 	dsl_deadlist_open(&ds_next->ds_deadlist, mos,
1973b2aab18SMatthew Ahrens 	    ds_next->ds_phys->ds_deadlist_obj);
1983b2aab18SMatthew Ahrens }
1993b2aab18SMatthew Ahrens 
2003b2aab18SMatthew Ahrens static void
2013b2aab18SMatthew Ahrens dsl_dataset_remove_clones_key(dsl_dataset_t *ds, uint64_t mintxg, dmu_tx_t *tx)
2023b2aab18SMatthew Ahrens {
2033b2aab18SMatthew Ahrens 	objset_t *mos = ds->ds_dir->dd_pool->dp_meta_objset;
2043b2aab18SMatthew Ahrens 	zap_cursor_t zc;
2053b2aab18SMatthew Ahrens 	zap_attribute_t za;
2063b2aab18SMatthew Ahrens 
2073b2aab18SMatthew Ahrens 	/*
2083b2aab18SMatthew Ahrens 	 * If it is the old version, dd_clones doesn't exist so we can't
2093b2aab18SMatthew Ahrens 	 * find the clones, but dsl_deadlist_remove_key() is a no-op so it
2103b2aab18SMatthew Ahrens 	 * doesn't matter.
2113b2aab18SMatthew Ahrens 	 */
2123b2aab18SMatthew Ahrens 	if (ds->ds_dir->dd_phys->dd_clones == 0)
2133b2aab18SMatthew Ahrens 		return;
2143b2aab18SMatthew Ahrens 
2153b2aab18SMatthew Ahrens 	for (zap_cursor_init(&zc, mos, ds->ds_dir->dd_phys->dd_clones);
2163b2aab18SMatthew Ahrens 	    zap_cursor_retrieve(&zc, &za) == 0;
2173b2aab18SMatthew Ahrens 	    zap_cursor_advance(&zc)) {
2183b2aab18SMatthew Ahrens 		dsl_dataset_t *clone;
2193b2aab18SMatthew Ahrens 
2203b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(ds->ds_dir->dd_pool,
2213b2aab18SMatthew Ahrens 		    za.za_first_integer, FTAG, &clone));
2223b2aab18SMatthew Ahrens 		if (clone->ds_dir->dd_origin_txg > mintxg) {
2233b2aab18SMatthew Ahrens 			dsl_deadlist_remove_key(&clone->ds_deadlist,
2243b2aab18SMatthew Ahrens 			    mintxg, tx);
2253b2aab18SMatthew Ahrens 			dsl_dataset_remove_clones_key(clone, mintxg, tx);
2263b2aab18SMatthew Ahrens 		}
2273b2aab18SMatthew Ahrens 		dsl_dataset_rele(clone, FTAG);
2283b2aab18SMatthew Ahrens 	}
2293b2aab18SMatthew Ahrens 	zap_cursor_fini(&zc);
2303b2aab18SMatthew Ahrens }
2313b2aab18SMatthew Ahrens 
2323b2aab18SMatthew Ahrens void
2333b2aab18SMatthew Ahrens dsl_destroy_snapshot_sync_impl(dsl_dataset_t *ds, boolean_t defer, dmu_tx_t *tx)
2343b2aab18SMatthew Ahrens {
2353b2aab18SMatthew Ahrens 	int err;
2363b2aab18SMatthew Ahrens 	int after_branch_point = FALSE;
2373b2aab18SMatthew Ahrens 	dsl_pool_t *dp = ds->ds_dir->dd_pool;
2383b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
2393b2aab18SMatthew Ahrens 	dsl_dataset_t *ds_prev = NULL;
2403b2aab18SMatthew Ahrens 	uint64_t obj;
2413b2aab18SMatthew Ahrens 
2423b2aab18SMatthew Ahrens 	ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
2433b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_bp.blk_birth, <=, tx->tx_txg);
2443b2aab18SMatthew Ahrens 	ASSERT(refcount_is_zero(&ds->ds_longholds));
2453b2aab18SMatthew Ahrens 
2463b2aab18SMatthew Ahrens 	if (defer &&
2473b2aab18SMatthew Ahrens 	    (ds->ds_userrefs > 0 || ds->ds_phys->ds_num_children > 1)) {
2483b2aab18SMatthew Ahrens 		ASSERT(spa_version(dp->dp_spa) >= SPA_VERSION_USERREFS);
2493b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds->ds_dbuf, tx);
2503b2aab18SMatthew Ahrens 		ds->ds_phys->ds_flags |= DS_FLAG_DEFER_DESTROY;
2513b2aab18SMatthew Ahrens 		spa_history_log_internal_ds(ds, "defer_destroy", tx, "");
2523b2aab18SMatthew Ahrens 		return;
2533b2aab18SMatthew Ahrens 	}
2543b2aab18SMatthew Ahrens 
2553b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_num_children, <=, 1);
2563b2aab18SMatthew Ahrens 
2573b2aab18SMatthew Ahrens 	/* We need to log before removing it from the namespace. */
2583b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(ds, "destroy", tx, "");
2593b2aab18SMatthew Ahrens 
2603b2aab18SMatthew Ahrens 	dsl_scan_ds_destroyed(ds, tx);
2613b2aab18SMatthew Ahrens 
2623b2aab18SMatthew Ahrens 	obj = ds->ds_object;
2633b2aab18SMatthew Ahrens 
2643b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_prev_snap_obj != 0) {
2653b2aab18SMatthew Ahrens 		ASSERT3P(ds->ds_prev, ==, NULL);
2663b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
2673b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_prev_snap_obj, FTAG, &ds_prev));
2683b2aab18SMatthew Ahrens 		after_branch_point =
2693b2aab18SMatthew Ahrens 		    (ds_prev->ds_phys->ds_next_snap_obj != obj);
2703b2aab18SMatthew Ahrens 
2713b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds_prev->ds_dbuf, tx);
2723b2aab18SMatthew Ahrens 		if (after_branch_point &&
2733b2aab18SMatthew Ahrens 		    ds_prev->ds_phys->ds_next_clones_obj != 0) {
2743b2aab18SMatthew Ahrens 			dsl_dataset_remove_from_next_clones(ds_prev, obj, tx);
2753b2aab18SMatthew Ahrens 			if (ds->ds_phys->ds_next_snap_obj != 0) {
2763b2aab18SMatthew Ahrens 				VERIFY0(zap_add_int(mos,
2773b2aab18SMatthew Ahrens 				    ds_prev->ds_phys->ds_next_clones_obj,
2783b2aab18SMatthew Ahrens 				    ds->ds_phys->ds_next_snap_obj, tx));
2793b2aab18SMatthew Ahrens 			}
2803b2aab18SMatthew Ahrens 		}
2813b2aab18SMatthew Ahrens 		if (!after_branch_point) {
2823b2aab18SMatthew Ahrens 			ds_prev->ds_phys->ds_next_snap_obj =
2833b2aab18SMatthew Ahrens 			    ds->ds_phys->ds_next_snap_obj;
2843b2aab18SMatthew Ahrens 		}
2853b2aab18SMatthew Ahrens 	}
2863b2aab18SMatthew Ahrens 
2873b2aab18SMatthew Ahrens 	dsl_dataset_t *ds_next;
2883b2aab18SMatthew Ahrens 	uint64_t old_unique;
2893b2aab18SMatthew Ahrens 	uint64_t used = 0, comp = 0, uncomp = 0;
2903b2aab18SMatthew Ahrens 
2913b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp,
2923b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_next_snap_obj, FTAG, &ds_next));
2933b2aab18SMatthew Ahrens 	ASSERT3U(ds_next->ds_phys->ds_prev_snap_obj, ==, obj);
2943b2aab18SMatthew Ahrens 
2953b2aab18SMatthew Ahrens 	old_unique = ds_next->ds_phys->ds_unique_bytes;
2963b2aab18SMatthew Ahrens 
2973b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds_next->ds_dbuf, tx);
2983b2aab18SMatthew Ahrens 	ds_next->ds_phys->ds_prev_snap_obj =
2993b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_prev_snap_obj;
3003b2aab18SMatthew Ahrens 	ds_next->ds_phys->ds_prev_snap_txg =
3013b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_prev_snap_txg;
3023b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_prev_snap_txg, ==,
3033b2aab18SMatthew Ahrens 	    ds_prev ? ds_prev->ds_phys->ds_creation_txg : 0);
3043b2aab18SMatthew Ahrens 
3053b2aab18SMatthew Ahrens 	if (ds_next->ds_deadlist.dl_oldfmt) {
3063b2aab18SMatthew Ahrens 		process_old_deadlist(ds, ds_prev, ds_next,
3073b2aab18SMatthew Ahrens 		    after_branch_point, tx);
3083b2aab18SMatthew Ahrens 	} else {
3093b2aab18SMatthew Ahrens 		/* Adjust prev's unique space. */
3103b2aab18SMatthew Ahrens 		if (ds_prev && !after_branch_point) {
3113b2aab18SMatthew Ahrens 			dsl_deadlist_space_range(&ds_next->ds_deadlist,
3123b2aab18SMatthew Ahrens 			    ds_prev->ds_phys->ds_prev_snap_txg,
3133b2aab18SMatthew Ahrens 			    ds->ds_phys->ds_prev_snap_txg,
3143b2aab18SMatthew Ahrens 			    &used, &comp, &uncomp);
3153b2aab18SMatthew Ahrens 			ds_prev->ds_phys->ds_unique_bytes += used;
3163b2aab18SMatthew Ahrens 		}
3173b2aab18SMatthew Ahrens 
3183b2aab18SMatthew Ahrens 		/* Adjust snapused. */
3193b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&ds_next->ds_deadlist,
3203b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_prev_snap_txg, UINT64_MAX,
3213b2aab18SMatthew Ahrens 		    &used, &comp, &uncomp);
3223b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_SNAP,
3233b2aab18SMatthew Ahrens 		    -used, -comp, -uncomp, tx);
3243b2aab18SMatthew Ahrens 
3253b2aab18SMatthew Ahrens 		/* Move blocks to be freed to pool's free list. */
3263b2aab18SMatthew Ahrens 		dsl_deadlist_move_bpobj(&ds_next->ds_deadlist,
3273b2aab18SMatthew Ahrens 		    &dp->dp_free_bpobj, ds->ds_phys->ds_prev_snap_txg,
3283b2aab18SMatthew Ahrens 		    tx);
3293b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(tx->tx_pool->dp_free_dir,
3303b2aab18SMatthew Ahrens 		    DD_USED_HEAD, used, comp, uncomp, tx);
3313b2aab18SMatthew Ahrens 
3323b2aab18SMatthew Ahrens 		/* Merge our deadlist into next's and free it. */
3333b2aab18SMatthew Ahrens 		dsl_deadlist_merge(&ds_next->ds_deadlist,
3343b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_deadlist_obj, tx);
3353b2aab18SMatthew Ahrens 	}
3363b2aab18SMatthew Ahrens 	dsl_deadlist_close(&ds->ds_deadlist);
3373b2aab18SMatthew Ahrens 	dsl_deadlist_free(mos, ds->ds_phys->ds_deadlist_obj, tx);
3383b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
3393b2aab18SMatthew Ahrens 	ds->ds_phys->ds_deadlist_obj = 0;
3403b2aab18SMatthew Ahrens 
3413b2aab18SMatthew Ahrens 	/* Collapse range in clone heads */
3423b2aab18SMatthew Ahrens 	dsl_dataset_remove_clones_key(ds,
3433b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_creation_txg, tx);
3443b2aab18SMatthew Ahrens 
3453b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds_next)) {
3463b2aab18SMatthew Ahrens 		dsl_dataset_t *ds_nextnext;
3473b2aab18SMatthew Ahrens 
3483b2aab18SMatthew Ahrens 		/*
3493b2aab18SMatthew Ahrens 		 * Update next's unique to include blocks which
3503b2aab18SMatthew Ahrens 		 * were previously shared by only this snapshot
3513b2aab18SMatthew Ahrens 		 * and it.  Those blocks will be born after the
3523b2aab18SMatthew Ahrens 		 * prev snap and before this snap, and will have
3533b2aab18SMatthew Ahrens 		 * died after the next snap and before the one
3543b2aab18SMatthew Ahrens 		 * after that (ie. be on the snap after next's
3553b2aab18SMatthew Ahrens 		 * deadlist).
3563b2aab18SMatthew Ahrens 		 */
3573b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
3583b2aab18SMatthew Ahrens 		    ds_next->ds_phys->ds_next_snap_obj, FTAG, &ds_nextnext));
3593b2aab18SMatthew Ahrens 		dsl_deadlist_space_range(&ds_nextnext->ds_deadlist,
3603b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_prev_snap_txg,
3613b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_creation_txg,
3623b2aab18SMatthew Ahrens 		    &used, &comp, &uncomp);
3633b2aab18SMatthew Ahrens 		ds_next->ds_phys->ds_unique_bytes += used;
3643b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds_nextnext, FTAG);
3653b2aab18SMatthew Ahrens 		ASSERT3P(ds_next->ds_prev, ==, NULL);
3663b2aab18SMatthew Ahrens 
3673b2aab18SMatthew Ahrens 		/* Collapse range in this head. */
3683b2aab18SMatthew Ahrens 		dsl_dataset_t *hds;
3693b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp,
3703b2aab18SMatthew Ahrens 		    ds->ds_dir->dd_phys->dd_head_dataset_obj, FTAG, &hds));
3713b2aab18SMatthew Ahrens 		dsl_deadlist_remove_key(&hds->ds_deadlist,
3723b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_creation_txg, tx);
3733b2aab18SMatthew Ahrens 		dsl_dataset_rele(hds, FTAG);
3743b2aab18SMatthew Ahrens 
3753b2aab18SMatthew Ahrens 	} else {
3763b2aab18SMatthew Ahrens 		ASSERT3P(ds_next->ds_prev, ==, ds);
3773b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds_next->ds_prev, ds_next);
3783b2aab18SMatthew Ahrens 		ds_next->ds_prev = NULL;
3793b2aab18SMatthew Ahrens 		if (ds_prev) {
3803b2aab18SMatthew Ahrens 			VERIFY0(dsl_dataset_hold_obj(dp,
3813b2aab18SMatthew Ahrens 			    ds->ds_phys->ds_prev_snap_obj,
3823b2aab18SMatthew Ahrens 			    ds_next, &ds_next->ds_prev));
3833b2aab18SMatthew Ahrens 		}
3843b2aab18SMatthew Ahrens 
3853b2aab18SMatthew Ahrens 		dsl_dataset_recalc_head_uniq(ds_next);
3863b2aab18SMatthew Ahrens 
3873b2aab18SMatthew Ahrens 		/*
3883b2aab18SMatthew Ahrens 		 * Reduce the amount of our unconsumed refreservation
3893b2aab18SMatthew Ahrens 		 * being charged to our parent by the amount of
3903b2aab18SMatthew Ahrens 		 * new unique data we have gained.
3913b2aab18SMatthew Ahrens 		 */
3923b2aab18SMatthew Ahrens 		if (old_unique < ds_next->ds_reserved) {
3933b2aab18SMatthew Ahrens 			int64_t mrsdelta;
3943b2aab18SMatthew Ahrens 			uint64_t new_unique =
3953b2aab18SMatthew Ahrens 			    ds_next->ds_phys->ds_unique_bytes;
3963b2aab18SMatthew Ahrens 
3973b2aab18SMatthew Ahrens 			ASSERT(old_unique <= new_unique);
3983b2aab18SMatthew Ahrens 			mrsdelta = MIN(new_unique - old_unique,
3993b2aab18SMatthew Ahrens 			    ds_next->ds_reserved - old_unique);
4003b2aab18SMatthew Ahrens 			dsl_dir_diduse_space(ds->ds_dir,
4013b2aab18SMatthew Ahrens 			    DD_USED_REFRSRV, -mrsdelta, 0, 0, tx);
4023b2aab18SMatthew Ahrens 		}
4033b2aab18SMatthew Ahrens 	}
4043b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds_next, FTAG);
4053b2aab18SMatthew Ahrens 
4063b2aab18SMatthew Ahrens 	/*
4073b2aab18SMatthew Ahrens 	 * This must be done after the dsl_traverse(), because it will
4083b2aab18SMatthew Ahrens 	 * re-open the objset.
4093b2aab18SMatthew Ahrens 	 */
4103b2aab18SMatthew Ahrens 	if (ds->ds_objset) {
4113b2aab18SMatthew Ahrens 		dmu_objset_evict(ds->ds_objset);
4123b2aab18SMatthew Ahrens 		ds->ds_objset = NULL;
4133b2aab18SMatthew Ahrens 	}
4143b2aab18SMatthew Ahrens 
4153b2aab18SMatthew Ahrens 	/* remove from snapshot namespace */
4163b2aab18SMatthew Ahrens 	dsl_dataset_t *ds_head;
4173b2aab18SMatthew Ahrens 	ASSERT(ds->ds_phys->ds_snapnames_zapobj == 0);
4183b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold_obj(dp,
4193b2aab18SMatthew Ahrens 	    ds->ds_dir->dd_phys->dd_head_dataset_obj, FTAG, &ds_head));
4203b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_get_snapname(ds));
4213b2aab18SMatthew Ahrens #ifdef ZFS_DEBUG
4223b2aab18SMatthew Ahrens 	{
4233b2aab18SMatthew Ahrens 		uint64_t val;
4243b2aab18SMatthew Ahrens 
4253b2aab18SMatthew Ahrens 		err = dsl_dataset_snap_lookup(ds_head,
4263b2aab18SMatthew Ahrens 		    ds->ds_snapname, &val);
4273b2aab18SMatthew Ahrens 		ASSERT0(err);
4283b2aab18SMatthew Ahrens 		ASSERT3U(val, ==, obj);
4293b2aab18SMatthew Ahrens 	}
4303b2aab18SMatthew Ahrens #endif
4313b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_snap_remove(ds_head, ds->ds_snapname, tx));
4323b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds_head, FTAG);
4333b2aab18SMatthew Ahrens 
4343b2aab18SMatthew Ahrens 	if (ds_prev != NULL)
4353b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds_prev, FTAG);
4363b2aab18SMatthew Ahrens 
4373b2aab18SMatthew Ahrens 	spa_prop_clear_bootfs(dp->dp_spa, ds->ds_object, tx);
4383b2aab18SMatthew Ahrens 
4393b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_next_clones_obj != 0) {
4403b2aab18SMatthew Ahrens 		uint64_t count;
4413b2aab18SMatthew Ahrens 		ASSERT0(zap_count(mos,
4423b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_next_clones_obj, &count) && count == 0);
4433b2aab18SMatthew Ahrens 		VERIFY0(dmu_object_free(mos,
4443b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_next_clones_obj, tx));
4453b2aab18SMatthew Ahrens 	}
4463b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_props_obj != 0)
4473b2aab18SMatthew Ahrens 		VERIFY0(zap_destroy(mos, ds->ds_phys->ds_props_obj, tx));
4483b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_userrefs_obj != 0)
4493b2aab18SMatthew Ahrens 		VERIFY0(zap_destroy(mos, ds->ds_phys->ds_userrefs_obj, tx));
4503b2aab18SMatthew Ahrens 	dsl_dir_rele(ds->ds_dir, ds);
4513b2aab18SMatthew Ahrens 	ds->ds_dir = NULL;
4523b2aab18SMatthew Ahrens 	VERIFY0(dmu_object_free(mos, obj, tx));
4533b2aab18SMatthew Ahrens }
4543b2aab18SMatthew Ahrens 
4553b2aab18SMatthew Ahrens static void
4563b2aab18SMatthew Ahrens dsl_destroy_snapshot_sync(void *arg, dmu_tx_t *tx)
4573b2aab18SMatthew Ahrens {
4583b2aab18SMatthew Ahrens 	dmu_snapshots_destroy_arg_t *dsda = arg;
4593b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
4603b2aab18SMatthew Ahrens 	nvpair_t *pair;
4613b2aab18SMatthew Ahrens 
4623b2aab18SMatthew Ahrens 	for (pair = nvlist_next_nvpair(dsda->dsda_successful_snaps, NULL);
4633b2aab18SMatthew Ahrens 	    pair != NULL;
4643b2aab18SMatthew Ahrens 	    pair = nvlist_next_nvpair(dsda->dsda_successful_snaps, pair)) {
4653b2aab18SMatthew Ahrens 		dsl_dataset_t *ds;
4663b2aab18SMatthew Ahrens 
4673b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold(dp, nvpair_name(pair), FTAG, &ds));
4683b2aab18SMatthew Ahrens 
4693b2aab18SMatthew Ahrens 		dsl_destroy_snapshot_sync_impl(ds, dsda->dsda_defer, tx);
4703b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds, FTAG);
4713b2aab18SMatthew Ahrens 	}
4723b2aab18SMatthew Ahrens }
4733b2aab18SMatthew Ahrens 
4743b2aab18SMatthew Ahrens /*
4753b2aab18SMatthew Ahrens  * The semantics of this function are described in the comment above
4763b2aab18SMatthew Ahrens  * lzc_destroy_snaps().  To summarize:
4773b2aab18SMatthew Ahrens  *
4783b2aab18SMatthew Ahrens  * The snapshots must all be in the same pool.
4793b2aab18SMatthew Ahrens  *
4803b2aab18SMatthew Ahrens  * Snapshots that don't exist will be silently ignored (considered to be
4813b2aab18SMatthew Ahrens  * "already deleted").
4823b2aab18SMatthew Ahrens  *
4833b2aab18SMatthew Ahrens  * On success, all snaps will be destroyed and this will return 0.
4843b2aab18SMatthew Ahrens  * On failure, no snaps will be destroyed, the errlist will be filled in,
4853b2aab18SMatthew Ahrens  * and this will return an errno.
4863b2aab18SMatthew Ahrens  */
4873b2aab18SMatthew Ahrens int
4883b2aab18SMatthew Ahrens dsl_destroy_snapshots_nvl(nvlist_t *snaps, boolean_t defer,
4893b2aab18SMatthew Ahrens     nvlist_t *errlist)
4903b2aab18SMatthew Ahrens {
4913b2aab18SMatthew Ahrens 	dmu_snapshots_destroy_arg_t dsda;
4923b2aab18SMatthew Ahrens 	int error;
4933b2aab18SMatthew Ahrens 	nvpair_t *pair;
4943b2aab18SMatthew Ahrens 
4953b2aab18SMatthew Ahrens 	pair = nvlist_next_nvpair(snaps, NULL);
4963b2aab18SMatthew Ahrens 	if (pair == NULL)
4973b2aab18SMatthew Ahrens 		return (0);
4983b2aab18SMatthew Ahrens 
4993b2aab18SMatthew Ahrens 	dsda.dsda_snaps = snaps;
5003b2aab18SMatthew Ahrens 	dsda.dsda_successful_snaps = fnvlist_alloc();
5013b2aab18SMatthew Ahrens 	dsda.dsda_defer = defer;
5023b2aab18SMatthew Ahrens 	dsda.dsda_errlist = errlist;
5033b2aab18SMatthew Ahrens 
5043b2aab18SMatthew Ahrens 	error = dsl_sync_task(nvpair_name(pair),
5053b2aab18SMatthew Ahrens 	    dsl_destroy_snapshot_check, dsl_destroy_snapshot_sync,
5063b2aab18SMatthew Ahrens 	    &dsda, 0);
5073b2aab18SMatthew Ahrens 	fnvlist_free(dsda.dsda_successful_snaps);
5083b2aab18SMatthew Ahrens 
5093b2aab18SMatthew Ahrens 	return (error);
5103b2aab18SMatthew Ahrens }
5113b2aab18SMatthew Ahrens 
5123b2aab18SMatthew Ahrens int
5133b2aab18SMatthew Ahrens dsl_destroy_snapshot(const char *name, boolean_t defer)
5143b2aab18SMatthew Ahrens {
5153b2aab18SMatthew Ahrens 	int error;
5163b2aab18SMatthew Ahrens 	nvlist_t *nvl = fnvlist_alloc();
5173b2aab18SMatthew Ahrens 	nvlist_t *errlist = fnvlist_alloc();
5183b2aab18SMatthew Ahrens 
5193b2aab18SMatthew Ahrens 	fnvlist_add_boolean(nvl, name);
5203b2aab18SMatthew Ahrens 	error = dsl_destroy_snapshots_nvl(nvl, defer, errlist);
5213b2aab18SMatthew Ahrens 	fnvlist_free(errlist);
5223b2aab18SMatthew Ahrens 	fnvlist_free(nvl);
5233b2aab18SMatthew Ahrens 	return (error);
5243b2aab18SMatthew Ahrens }
5253b2aab18SMatthew Ahrens 
5263b2aab18SMatthew Ahrens struct killarg {
5273b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
5283b2aab18SMatthew Ahrens 	dmu_tx_t *tx;
5293b2aab18SMatthew Ahrens };
5303b2aab18SMatthew Ahrens 
5313b2aab18SMatthew Ahrens /* ARGSUSED */
5323b2aab18SMatthew Ahrens static int
5333b2aab18SMatthew Ahrens kill_blkptr(spa_t *spa, zilog_t *zilog, const blkptr_t *bp,
5343b2aab18SMatthew Ahrens     const zbookmark_t *zb, const dnode_phys_t *dnp, void *arg)
5353b2aab18SMatthew Ahrens {
5363b2aab18SMatthew Ahrens 	struct killarg *ka = arg;
5373b2aab18SMatthew Ahrens 	dmu_tx_t *tx = ka->tx;
5383b2aab18SMatthew Ahrens 
5393b2aab18SMatthew Ahrens 	if (bp == NULL)
5403b2aab18SMatthew Ahrens 		return (0);
5413b2aab18SMatthew Ahrens 
5423b2aab18SMatthew Ahrens 	if (zb->zb_level == ZB_ZIL_LEVEL) {
5433b2aab18SMatthew Ahrens 		ASSERT(zilog != NULL);
5443b2aab18SMatthew Ahrens 		/*
5453b2aab18SMatthew Ahrens 		 * It's a block in the intent log.  It has no
5463b2aab18SMatthew Ahrens 		 * accounting, so just free it.
5473b2aab18SMatthew Ahrens 		 */
5483b2aab18SMatthew Ahrens 		dsl_free(ka->tx->tx_pool, ka->tx->tx_txg, bp);
5493b2aab18SMatthew Ahrens 	} else {
5503b2aab18SMatthew Ahrens 		ASSERT(zilog == NULL);
5513b2aab18SMatthew Ahrens 		ASSERT3U(bp->blk_birth, >, ka->ds->ds_phys->ds_prev_snap_txg);
5523b2aab18SMatthew Ahrens 		(void) dsl_dataset_block_kill(ka->ds, bp, tx, B_FALSE);
5533b2aab18SMatthew Ahrens 	}
5543b2aab18SMatthew Ahrens 
5553b2aab18SMatthew Ahrens 	return (0);
5563b2aab18SMatthew Ahrens }
5573b2aab18SMatthew Ahrens 
5583b2aab18SMatthew Ahrens static void
5593b2aab18SMatthew Ahrens old_synchronous_dataset_destroy(dsl_dataset_t *ds, dmu_tx_t *tx)
5603b2aab18SMatthew Ahrens {
5613b2aab18SMatthew Ahrens 	struct killarg ka;
5623b2aab18SMatthew Ahrens 
5633b2aab18SMatthew Ahrens 	/*
5643b2aab18SMatthew Ahrens 	 * Free everything that we point to (that's born after
5653b2aab18SMatthew Ahrens 	 * the previous snapshot, if we are a clone)
5663b2aab18SMatthew Ahrens 	 *
5673b2aab18SMatthew Ahrens 	 * NB: this should be very quick, because we already
5683b2aab18SMatthew Ahrens 	 * freed all the objects in open context.
5693b2aab18SMatthew Ahrens 	 */
5703b2aab18SMatthew Ahrens 	ka.ds = ds;
5713b2aab18SMatthew Ahrens 	ka.tx = tx;
5723b2aab18SMatthew Ahrens 	VERIFY0(traverse_dataset(ds,
5733b2aab18SMatthew Ahrens 	    ds->ds_phys->ds_prev_snap_txg, TRAVERSE_POST,
5743b2aab18SMatthew Ahrens 	    kill_blkptr, &ka));
5753b2aab18SMatthew Ahrens 	ASSERT(!DS_UNIQUE_IS_ACCURATE(ds) || ds->ds_phys->ds_unique_bytes == 0);
5763b2aab18SMatthew Ahrens }
5773b2aab18SMatthew Ahrens 
5783b2aab18SMatthew Ahrens typedef struct dsl_destroy_head_arg {
5793b2aab18SMatthew Ahrens 	const char *ddha_name;
5803b2aab18SMatthew Ahrens } dsl_destroy_head_arg_t;
5813b2aab18SMatthew Ahrens 
5823b2aab18SMatthew Ahrens int
5833b2aab18SMatthew Ahrens dsl_destroy_head_check_impl(dsl_dataset_t *ds, int expected_holds)
5843b2aab18SMatthew Ahrens {
5853b2aab18SMatthew Ahrens 	int error;
5863b2aab18SMatthew Ahrens 	uint64_t count;
5873b2aab18SMatthew Ahrens 	objset_t *mos;
5883b2aab18SMatthew Ahrens 
5893b2aab18SMatthew Ahrens 	if (dsl_dataset_is_snapshot(ds))
590be6fd75aSMatthew Ahrens 		return (SET_ERROR(EINVAL));
5913b2aab18SMatthew Ahrens 
5923b2aab18SMatthew Ahrens 	if (refcount_count(&ds->ds_longholds) != expected_holds)
593be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
5943b2aab18SMatthew Ahrens 
5953b2aab18SMatthew Ahrens 	mos = ds->ds_dir->dd_pool->dp_meta_objset;
5963b2aab18SMatthew Ahrens 
5973b2aab18SMatthew Ahrens 	/*
5983b2aab18SMatthew Ahrens 	 * Can't delete a head dataset if there are snapshots of it.
5993b2aab18SMatthew Ahrens 	 * (Except if the only snapshots are from the branch we cloned
6003b2aab18SMatthew Ahrens 	 * from.)
6013b2aab18SMatthew Ahrens 	 */
6023b2aab18SMatthew Ahrens 	if (ds->ds_prev != NULL &&
6033b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_next_snap_obj == ds->ds_object)
604be6fd75aSMatthew Ahrens 		return (SET_ERROR(EBUSY));
6053b2aab18SMatthew Ahrens 
6063b2aab18SMatthew Ahrens 	/*
6073b2aab18SMatthew Ahrens 	 * Can't delete if there are children of this fs.
6083b2aab18SMatthew Ahrens 	 */
6093b2aab18SMatthew Ahrens 	error = zap_count(mos,
6103b2aab18SMatthew Ahrens 	    ds->ds_dir->dd_phys->dd_child_dir_zapobj, &count);
6113b2aab18SMatthew Ahrens 	if (error != 0)
6123b2aab18SMatthew Ahrens 		return (error);
6133b2aab18SMatthew Ahrens 	if (count != 0)
614be6fd75aSMatthew Ahrens 		return (SET_ERROR(EEXIST));
6153b2aab18SMatthew Ahrens 
6163b2aab18SMatthew Ahrens 	if (dsl_dir_is_clone(ds->ds_dir) && DS_IS_DEFER_DESTROY(ds->ds_prev) &&
6173b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_num_children == 2 &&
6183b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_userrefs == 0) {
6193b2aab18SMatthew Ahrens 		/* We need to remove the origin snapshot as well. */
6203b2aab18SMatthew Ahrens 		if (!refcount_is_zero(&ds->ds_prev->ds_longholds))
621be6fd75aSMatthew Ahrens 			return (SET_ERROR(EBUSY));
6223b2aab18SMatthew Ahrens 	}
6233b2aab18SMatthew Ahrens 	return (0);
6243b2aab18SMatthew Ahrens }
6253b2aab18SMatthew Ahrens 
6263b2aab18SMatthew Ahrens static int
6273b2aab18SMatthew Ahrens dsl_destroy_head_check(void *arg, dmu_tx_t *tx)
6283b2aab18SMatthew Ahrens {
6293b2aab18SMatthew Ahrens 	dsl_destroy_head_arg_t *ddha = arg;
6303b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
6313b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
6323b2aab18SMatthew Ahrens 	int error;
6333b2aab18SMatthew Ahrens 
6343b2aab18SMatthew Ahrens 	error = dsl_dataset_hold(dp, ddha->ddha_name, FTAG, &ds);
6353b2aab18SMatthew Ahrens 	if (error != 0)
6363b2aab18SMatthew Ahrens 		return (error);
6373b2aab18SMatthew Ahrens 
6383b2aab18SMatthew Ahrens 	error = dsl_destroy_head_check_impl(ds, 0);
6393b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
6403b2aab18SMatthew Ahrens 	return (error);
6413b2aab18SMatthew Ahrens }
6423b2aab18SMatthew Ahrens 
6433b2aab18SMatthew Ahrens static void
6443b2aab18SMatthew Ahrens dsl_dir_destroy_sync(uint64_t ddobj, dmu_tx_t *tx)
6453b2aab18SMatthew Ahrens {
6463b2aab18SMatthew Ahrens 	dsl_dir_t *dd;
6473b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
6483b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
6493b2aab18SMatthew Ahrens 	dd_used_t t;
6503b2aab18SMatthew Ahrens 
6513b2aab18SMatthew Ahrens 	ASSERT(RRW_WRITE_HELD(&dmu_tx_pool(tx)->dp_config_rwlock));
6523b2aab18SMatthew Ahrens 
6533b2aab18SMatthew Ahrens 	VERIFY0(dsl_dir_hold_obj(dp, ddobj, NULL, FTAG, &dd));
6543b2aab18SMatthew Ahrens 
6553b2aab18SMatthew Ahrens 	ASSERT0(dd->dd_phys->dd_head_dataset_obj);
6563b2aab18SMatthew Ahrens 
6573b2aab18SMatthew Ahrens 	/*
6583b2aab18SMatthew Ahrens 	 * Remove our reservation. The impl() routine avoids setting the
6593b2aab18SMatthew Ahrens 	 * actual property, which would require the (already destroyed) ds.
6603b2aab18SMatthew Ahrens 	 */
6613b2aab18SMatthew Ahrens 	dsl_dir_set_reservation_sync_impl(dd, 0, tx);
6623b2aab18SMatthew Ahrens 
6633b2aab18SMatthew Ahrens 	ASSERT0(dd->dd_phys->dd_used_bytes);
6643b2aab18SMatthew Ahrens 	ASSERT0(dd->dd_phys->dd_reserved);
6653b2aab18SMatthew Ahrens 	for (t = 0; t < DD_USED_NUM; t++)
6663b2aab18SMatthew Ahrens 		ASSERT0(dd->dd_phys->dd_used_breakdown[t]);
6673b2aab18SMatthew Ahrens 
6683b2aab18SMatthew Ahrens 	VERIFY0(zap_destroy(mos, dd->dd_phys->dd_child_dir_zapobj, tx));
6693b2aab18SMatthew Ahrens 	VERIFY0(zap_destroy(mos, dd->dd_phys->dd_props_zapobj, tx));
6703b2aab18SMatthew Ahrens 	VERIFY0(dsl_deleg_destroy(mos, dd->dd_phys->dd_deleg_zapobj, tx));
6713b2aab18SMatthew Ahrens 	VERIFY0(zap_remove(mos,
6723b2aab18SMatthew Ahrens 	    dd->dd_parent->dd_phys->dd_child_dir_zapobj, dd->dd_myname, tx));
6733b2aab18SMatthew Ahrens 
6743b2aab18SMatthew Ahrens 	dsl_dir_rele(dd, FTAG);
6753b2aab18SMatthew Ahrens 	VERIFY0(dmu_object_free(mos, ddobj, tx));
6763b2aab18SMatthew Ahrens }
6773b2aab18SMatthew Ahrens 
6783b2aab18SMatthew Ahrens void
6793b2aab18SMatthew Ahrens dsl_destroy_head_sync_impl(dsl_dataset_t *ds, dmu_tx_t *tx)
6803b2aab18SMatthew Ahrens {
6813b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
6823b2aab18SMatthew Ahrens 	objset_t *mos = dp->dp_meta_objset;
6833b2aab18SMatthew Ahrens 	uint64_t obj, ddobj, prevobj = 0;
6843b2aab18SMatthew Ahrens 	boolean_t rmorigin;
6853b2aab18SMatthew Ahrens 
6863b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_num_children, <=, 1);
6873b2aab18SMatthew Ahrens 	ASSERT(ds->ds_prev == NULL ||
6883b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_next_snap_obj != ds->ds_object);
6893b2aab18SMatthew Ahrens 	ASSERT3U(ds->ds_phys->ds_bp.blk_birth, <=, tx->tx_txg);
6903b2aab18SMatthew Ahrens 	ASSERT(RRW_WRITE_HELD(&dp->dp_config_rwlock));
6913b2aab18SMatthew Ahrens 
6923b2aab18SMatthew Ahrens 	/* We need to log before removing it from the namespace. */
6933b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(ds, "destroy", tx, "");
6943b2aab18SMatthew Ahrens 
6953b2aab18SMatthew Ahrens 	rmorigin = (dsl_dir_is_clone(ds->ds_dir) &&
6963b2aab18SMatthew Ahrens 	    DS_IS_DEFER_DESTROY(ds->ds_prev) &&
6973b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_phys->ds_num_children == 2 &&
6983b2aab18SMatthew Ahrens 	    ds->ds_prev->ds_userrefs == 0);
6993b2aab18SMatthew Ahrens 
7003b2aab18SMatthew Ahrens 	/* Remove our reservation */
7013b2aab18SMatthew Ahrens 	if (ds->ds_reserved != 0) {
7023b2aab18SMatthew Ahrens 		dsl_dataset_set_refreservation_sync_impl(ds,
7033b2aab18SMatthew Ahrens 		    (ZPROP_SRC_NONE | ZPROP_SRC_LOCAL | ZPROP_SRC_RECEIVED),
7043b2aab18SMatthew Ahrens 		    0, tx);
7053b2aab18SMatthew Ahrens 		ASSERT0(ds->ds_reserved);
7063b2aab18SMatthew Ahrens 	}
7073b2aab18SMatthew Ahrens 
7083b2aab18SMatthew Ahrens 	dsl_scan_ds_destroyed(ds, tx);
7093b2aab18SMatthew Ahrens 
7103b2aab18SMatthew Ahrens 	obj = ds->ds_object;
7113b2aab18SMatthew Ahrens 
7123b2aab18SMatthew Ahrens 	if (ds->ds_phys->ds_prev_snap_obj != 0) {
7133b2aab18SMatthew Ahrens 		/* This is a clone */
7143b2aab18SMatthew Ahrens 		ASSERT(ds->ds_prev != NULL);
7153b2aab18SMatthew Ahrens 		ASSERT3U(ds->ds_prev->ds_phys->ds_next_snap_obj, !=, obj);
7163b2aab18SMatthew Ahrens 		ASSERT0(ds->ds_phys->ds_next_snap_obj);
7173b2aab18SMatthew Ahrens 
7183b2aab18SMatthew Ahrens 		dmu_buf_will_dirty(ds->ds_prev->ds_dbuf, tx);
7193b2aab18SMatthew Ahrens 		if (ds->ds_prev->ds_phys->ds_next_clones_obj != 0) {
7203b2aab18SMatthew Ahrens 			dsl_dataset_remove_from_next_clones(ds->ds_prev,
7213b2aab18SMatthew Ahrens 			    obj, tx);
7223b2aab18SMatthew Ahrens 		}
7233b2aab18SMatthew Ahrens 
7243b2aab18SMatthew Ahrens 		ASSERT3U(ds->ds_prev->ds_phys->ds_num_children, >, 1);
7253b2aab18SMatthew Ahrens 		ds->ds_prev->ds_phys->ds_num_children--;
7263b2aab18SMatthew Ahrens 	}
7273b2aab18SMatthew Ahrens 
7283b2aab18SMatthew Ahrens 	zfeature_info_t *async_destroy =
7293b2aab18SMatthew Ahrens 	    &spa_feature_table[SPA_FEATURE_ASYNC_DESTROY];
7303b2aab18SMatthew Ahrens 	objset_t *os;
7313b2aab18SMatthew Ahrens 
7323b2aab18SMatthew Ahrens 	/*
7333b2aab18SMatthew Ahrens 	 * Destroy the deadlist.  Unless it's a clone, the
7343b2aab18SMatthew Ahrens 	 * deadlist should be empty.  (If it's a clone, it's
7353b2aab18SMatthew Ahrens 	 * safe to ignore the deadlist contents.)
7363b2aab18SMatthew Ahrens 	 */
7373b2aab18SMatthew Ahrens 	dsl_deadlist_close(&ds->ds_deadlist);
7383b2aab18SMatthew Ahrens 	dsl_deadlist_free(mos, ds->ds_phys->ds_deadlist_obj, tx);
7393b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
7403b2aab18SMatthew Ahrens 	ds->ds_phys->ds_deadlist_obj = 0;
7413b2aab18SMatthew Ahrens 
7423b2aab18SMatthew Ahrens 	VERIFY0(dmu_objset_from_ds(ds, &os));
7433b2aab18SMatthew Ahrens 
7443b2aab18SMatthew Ahrens 	if (!spa_feature_is_enabled(dp->dp_spa, async_destroy)) {
7453b2aab18SMatthew Ahrens 		old_synchronous_dataset_destroy(ds, tx);
7463b2aab18SMatthew Ahrens 	} else {
7473b2aab18SMatthew Ahrens 		/*
7483b2aab18SMatthew Ahrens 		 * Move the bptree into the pool's list of trees to
7493b2aab18SMatthew Ahrens 		 * clean up and update space accounting information.
7503b2aab18SMatthew Ahrens 		 */
7513b2aab18SMatthew Ahrens 		uint64_t used, comp, uncomp;
7523b2aab18SMatthew Ahrens 
7533b2aab18SMatthew Ahrens 		zil_destroy_sync(dmu_objset_zil(os), tx);
7543b2aab18SMatthew Ahrens 
7553b2aab18SMatthew Ahrens 		if (!spa_feature_is_active(dp->dp_spa, async_destroy)) {
756*4a923759SGeorge Wilson 			dsl_scan_t *scn = dp->dp_scan;
757*4a923759SGeorge Wilson 
7583b2aab18SMatthew Ahrens 			spa_feature_incr(dp->dp_spa, async_destroy, tx);
7593b2aab18SMatthew Ahrens 			dp->dp_bptree_obj = bptree_alloc(mos, tx);
7603b2aab18SMatthew Ahrens 			VERIFY0(zap_add(mos,
7613b2aab18SMatthew Ahrens 			    DMU_POOL_DIRECTORY_OBJECT,
7623b2aab18SMatthew Ahrens 			    DMU_POOL_BPTREE_OBJ, sizeof (uint64_t), 1,
7633b2aab18SMatthew Ahrens 			    &dp->dp_bptree_obj, tx));
764*4a923759SGeorge Wilson 			ASSERT(!scn->scn_async_destroying);
765*4a923759SGeorge Wilson 			scn->scn_async_destroying = B_TRUE;
7663b2aab18SMatthew Ahrens 		}
7673b2aab18SMatthew Ahrens 
7683b2aab18SMatthew Ahrens 		used = ds->ds_dir->dd_phys->dd_used_bytes;
7693b2aab18SMatthew Ahrens 		comp = ds->ds_dir->dd_phys->dd_compressed_bytes;
7703b2aab18SMatthew Ahrens 		uncomp = ds->ds_dir->dd_phys->dd_uncompressed_bytes;
7713b2aab18SMatthew Ahrens 
7723b2aab18SMatthew Ahrens 		ASSERT(!DS_UNIQUE_IS_ACCURATE(ds) ||
7733b2aab18SMatthew Ahrens 		    ds->ds_phys->ds_unique_bytes == used);
7743b2aab18SMatthew Ahrens 
7753b2aab18SMatthew Ahrens 		bptree_add(mos, dp->dp_bptree_obj,
7763b2aab18SMatthew Ahrens 		    &ds->ds_phys->ds_bp, ds->ds_phys->ds_prev_snap_txg,
7773b2aab18SMatthew Ahrens 		    used, comp, uncomp, tx);
7783b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(ds->ds_dir, DD_USED_HEAD,
7793b2aab18SMatthew Ahrens 		    -used, -comp, -uncomp, tx);
7803b2aab18SMatthew Ahrens 		dsl_dir_diduse_space(dp->dp_free_dir, DD_USED_HEAD,
7813b2aab18SMatthew Ahrens 		    used, comp, uncomp, tx);
7823b2aab18SMatthew Ahrens 	}
7833b2aab18SMatthew Ahrens 
7843b2aab18SMatthew Ahrens 	if (ds->ds_prev != NULL) {
7853b2aab18SMatthew Ahrens 		if (spa_version(dp->dp_spa) >= SPA_VERSION_DIR_CLONES) {
7863b2aab18SMatthew Ahrens 			VERIFY0(zap_remove_int(mos,
7873b2aab18SMatthew Ahrens 			    ds->ds_prev->ds_dir->dd_phys->dd_clones,
7883b2aab18SMatthew Ahrens 			    ds->ds_object, tx));
7893b2aab18SMatthew Ahrens 		}
7903b2aab18SMatthew Ahrens 		prevobj = ds->ds_prev->ds_object;
7913b2aab18SMatthew Ahrens 		dsl_dataset_rele(ds->ds_prev, ds);
7923b2aab18SMatthew Ahrens 		ds->ds_prev = NULL;
7933b2aab18SMatthew Ahrens 	}
7943b2aab18SMatthew Ahrens 
7953b2aab18SMatthew Ahrens 	/*
7963b2aab18SMatthew Ahrens 	 * This must be done after the dsl_traverse(), because it will
7973b2aab18SMatthew Ahrens 	 * re-open the objset.
7983b2aab18SMatthew Ahrens 	 */
7993b2aab18SMatthew Ahrens 	if (ds->ds_objset) {
8003b2aab18SMatthew Ahrens 		dmu_objset_evict(ds->ds_objset);
8013b2aab18SMatthew Ahrens 		ds->ds_objset = NULL;
8023b2aab18SMatthew Ahrens 	}
8033b2aab18SMatthew Ahrens 
8043b2aab18SMatthew Ahrens 	/* Erase the link in the dir */
8053b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dir->dd_dbuf, tx);
8063b2aab18SMatthew Ahrens 	ds->ds_dir->dd_phys->dd_head_dataset_obj = 0;
8073b2aab18SMatthew Ahrens 	ddobj = ds->ds_dir->dd_object;
8083b2aab18SMatthew Ahrens 	ASSERT(ds->ds_phys->ds_snapnames_zapobj != 0);
8093b2aab18SMatthew Ahrens 	VERIFY0(zap_destroy(mos, ds->ds_phys->ds_snapnames_zapobj, tx));
8103b2aab18SMatthew Ahrens 
8113b2aab18SMatthew Ahrens 	spa_prop_clear_bootfs(dp->dp_spa, ds->ds_object, tx);
8123b2aab18SMatthew Ahrens 
8133b2aab18SMatthew Ahrens 	ASSERT0(ds->ds_phys->ds_next_clones_obj);
8143b2aab18SMatthew Ahrens 	ASSERT0(ds->ds_phys->ds_props_obj);
8153b2aab18SMatthew Ahrens 	ASSERT0(ds->ds_phys->ds_userrefs_obj);
8163b2aab18SMatthew Ahrens 	dsl_dir_rele(ds->ds_dir, ds);
8173b2aab18SMatthew Ahrens 	ds->ds_dir = NULL;
8183b2aab18SMatthew Ahrens 	VERIFY0(dmu_object_free(mos, obj, tx));
8193b2aab18SMatthew Ahrens 
8203b2aab18SMatthew Ahrens 	dsl_dir_destroy_sync(ddobj, tx);
8213b2aab18SMatthew Ahrens 
8223b2aab18SMatthew Ahrens 	if (rmorigin) {
8233b2aab18SMatthew Ahrens 		dsl_dataset_t *prev;
8243b2aab18SMatthew Ahrens 		VERIFY0(dsl_dataset_hold_obj(dp, prevobj, FTAG, &prev));
8253b2aab18SMatthew Ahrens 		dsl_destroy_snapshot_sync_impl(prev, B_FALSE, tx);
8263b2aab18SMatthew Ahrens 		dsl_dataset_rele(prev, FTAG);
8273b2aab18SMatthew Ahrens 	}
8283b2aab18SMatthew Ahrens }
8293b2aab18SMatthew Ahrens 
8303b2aab18SMatthew Ahrens static void
8313b2aab18SMatthew Ahrens dsl_destroy_head_sync(void *arg, dmu_tx_t *tx)
8323b2aab18SMatthew Ahrens {
8333b2aab18SMatthew Ahrens 	dsl_destroy_head_arg_t *ddha = arg;
8343b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
8353b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
8363b2aab18SMatthew Ahrens 
8373b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddha->ddha_name, FTAG, &ds));
8383b2aab18SMatthew Ahrens 	dsl_destroy_head_sync_impl(ds, tx);
8393b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
8403b2aab18SMatthew Ahrens }
8413b2aab18SMatthew Ahrens 
8423b2aab18SMatthew Ahrens static void
8433b2aab18SMatthew Ahrens dsl_destroy_head_begin_sync(void *arg, dmu_tx_t *tx)
8443b2aab18SMatthew Ahrens {
8453b2aab18SMatthew Ahrens 	dsl_destroy_head_arg_t *ddha = arg;
8463b2aab18SMatthew Ahrens 	dsl_pool_t *dp = dmu_tx_pool(tx);
8473b2aab18SMatthew Ahrens 	dsl_dataset_t *ds;
8483b2aab18SMatthew Ahrens 
8493b2aab18SMatthew Ahrens 	VERIFY0(dsl_dataset_hold(dp, ddha->ddha_name, FTAG, &ds));
8503b2aab18SMatthew Ahrens 
8513b2aab18SMatthew Ahrens 	/* Mark it as inconsistent on-disk, in case we crash */
8523b2aab18SMatthew Ahrens 	dmu_buf_will_dirty(ds->ds_dbuf, tx);
8533b2aab18SMatthew Ahrens 	ds->ds_phys->ds_flags |= DS_FLAG_INCONSISTENT;
8543b2aab18SMatthew Ahrens 
8553b2aab18SMatthew Ahrens 	spa_history_log_internal_ds(ds, "destroy begin", tx, "");
8563b2aab18SMatthew Ahrens 	dsl_dataset_rele(ds, FTAG);
8573b2aab18SMatthew Ahrens }
8583b2aab18SMatthew Ahrens 
8593b2aab18SMatthew Ahrens int
8603b2aab18SMatthew Ahrens dsl_destroy_head(const char *name)
8613b2aab18SMatthew Ahrens {
8623b2aab18SMatthew Ahrens 	dsl_destroy_head_arg_t ddha;
8633b2aab18SMatthew Ahrens 	int error;
8643b2aab18SMatthew Ahrens 	spa_t *spa;
8653b2aab18SMatthew Ahrens 	boolean_t isenabled;
8663b2aab18SMatthew Ahrens 
8673b2aab18SMatthew Ahrens #ifdef _KERNEL
8683b2aab18SMatthew Ahrens 	zfs_destroy_unmount_origin(name);
8693b2aab18SMatthew Ahrens #endif
8703b2aab18SMatthew Ahrens 
8713b2aab18SMatthew Ahrens 	error = spa_open(name, &spa, FTAG);
8723b2aab18SMatthew Ahrens 	if (error != 0)
8733b2aab18SMatthew Ahrens 		return (error);
8743b2aab18SMatthew Ahrens 	isenabled = spa_feature_is_enabled(spa,
8753b2aab18SMatthew Ahrens 	    &spa_feature_table[SPA_FEATURE_ASYNC_DESTROY]);
8763b2aab18SMatthew Ahrens 	spa_close(spa, FTAG);
8773b2aab18SMatthew Ahrens 
8783b2aab18SMatthew Ahrens 	ddha.ddha_name = name;
8793b2aab18SMatthew Ahrens 
8803b2aab18SMatthew Ahrens 	if (!isenabled) {
8813b2aab18SMatthew Ahrens 		objset_t *os;
8823b2aab18SMatthew Ahrens 
8833b2aab18SMatthew Ahrens 		error = dsl_sync_task(name, dsl_destroy_head_check,
8843b2aab18SMatthew Ahrens 		    dsl_destroy_head_begin_sync, &ddha, 0);
8853b2aab18SMatthew Ahrens 		if (error != 0)
8863b2aab18SMatthew Ahrens 			return (error);
8873b2aab18SMatthew Ahrens 
8883b2aab18SMatthew Ahrens 		/*
8893b2aab18SMatthew Ahrens 		 * Head deletion is processed in one txg on old pools;
8903b2aab18SMatthew Ahrens 		 * remove the objects from open context so that the txg sync
8913b2aab18SMatthew Ahrens 		 * is not too long.
8923b2aab18SMatthew Ahrens 		 */
8933b2aab18SMatthew Ahrens 		error = dmu_objset_own(name, DMU_OST_ANY, B_FALSE, FTAG, &os);
8943b2aab18SMatthew Ahrens 		if (error == 0) {
8953b2aab18SMatthew Ahrens 			uint64_t prev_snap_txg =
8963b2aab18SMatthew Ahrens 			    dmu_objset_ds(os)->ds_phys->ds_prev_snap_txg;
8973b2aab18SMatthew Ahrens 			for (uint64_t obj = 0; error == 0;
8983b2aab18SMatthew Ahrens 			    error = dmu_object_next(os, &obj, FALSE,
8993b2aab18SMatthew Ahrens 			    prev_snap_txg))
9003b2aab18SMatthew Ahrens 				(void) dmu_free_object(os, obj);
9013b2aab18SMatthew Ahrens 			/* sync out all frees */
9023b2aab18SMatthew Ahrens 			txg_wait_synced(dmu_objset_pool(os), 0);
9033b2aab18SMatthew Ahrens 			dmu_objset_disown(os, FTAG);
9043b2aab18SMatthew Ahrens 		}
9053b2aab18SMatthew Ahrens 	}
9063b2aab18SMatthew Ahrens 
9073b2aab18SMatthew Ahrens 	return (dsl_sync_task(name, dsl_destroy_head_check,
9083b2aab18SMatthew Ahrens 	    dsl_destroy_head_sync, &ddha, 0));
9093b2aab18SMatthew Ahrens }
9103b2aab18SMatthew Ahrens 
9113b2aab18SMatthew Ahrens /*
9123b2aab18SMatthew Ahrens  * Note, this function is used as the callback for dmu_objset_find().  We
9133b2aab18SMatthew Ahrens  * always return 0 so that we will continue to find and process
9143b2aab18SMatthew Ahrens  * inconsistent datasets, even if we encounter an error trying to
9153b2aab18SMatthew Ahrens  * process one of them.
9163b2aab18SMatthew Ahrens  */
9173b2aab18SMatthew Ahrens /* ARGSUSED */
9183b2aab18SMatthew Ahrens int
9193b2aab18SMatthew Ahrens dsl_destroy_inconsistent(const char *dsname, void *arg)
9203b2aab18SMatthew Ahrens {
9213b2aab18SMatthew Ahrens 	objset_t *os;
9223b2aab18SMatthew Ahrens 
9233b2aab18SMatthew Ahrens 	if (dmu_objset_hold(dsname, FTAG, &os) == 0) {
9243b2aab18SMatthew Ahrens 		boolean_t inconsistent = DS_IS_INCONSISTENT(dmu_objset_ds(os));
9253b2aab18SMatthew Ahrens 		dmu_objset_rele(os, FTAG);
9263b2aab18SMatthew Ahrens 		if (inconsistent)
9273b2aab18SMatthew Ahrens 			(void) dsl_destroy_head(dsname);
9283b2aab18SMatthew Ahrens 	}
9293b2aab18SMatthew Ahrens 	return (0);
9303b2aab18SMatthew Ahrens }
931