diff options
author | Chris Kirby <Chris.Kirby@oracle.com> | 2010-07-07 15:04:13 -0600 |
---|---|---|
committer | Chris Kirby <Chris.Kirby@oracle.com> | 2010-07-07 15:04:13 -0600 |
commit | a7f53a5629374ca27c5696ace9a1946c2ca050f4 (patch) | |
tree | d5bf31a797c0b2bc1eef43d9b6da990795dc0691 /usr/src/cmd/zfs | |
parent | d5493db7e14e61d7910d92d1316d079110a327ef (diff) | |
download | illumos-joyent-a7f53a5629374ca27c5696ace9a1946c2ca050f4.tar.gz |
6938335 zfs send -R can still miss renamed snapshots
6955879 panic in dmu_objset_stats while running nfs IOs.
6928104 zfs send/rename race can leak snapshot holds
6953835 mem leak in dsl_dataset_user_release_tmp()
6915117 zfs_iter_snapshots() should deal with midstream snapshot renames
Diffstat (limited to 'usr/src/cmd/zfs')
-rw-r--r-- | usr/src/cmd/zfs/zfs_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/cmd/zfs/zfs_main.c b/usr/src/cmd/zfs/zfs_main.c index 5294cc48a5..8c831976c3 100644 --- a/usr/src/cmd/zfs/zfs_main.c +++ b/usr/src/cmd/zfs/zfs_main.c @@ -2888,7 +2888,7 @@ zfs_do_hold_rele_impl(int argc, char **argv, boolean_t holding) } if (holding) { if (zfs_hold(zhp, delim+1, tag, recursive, - temphold, B_FALSE, -1) != 0) + temphold, B_FALSE, -1, 0, 0) != 0) ++errors; } else { if (zfs_release(zhp, delim+1, tag, recursive) != 0) |