summaryrefslogtreecommitdiffstats
path: root/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c
diff options
context:
space:
mode:
authormm <mm@FreeBSD.org>2013-04-11 07:40:30 +0000
committermm <mm@FreeBSD.org>2013-04-11 07:40:30 +0000
commitdc37eae42dd15564a82cb20381721692101d3a53 (patch)
treece7ce2f068278f8ec8669a1ed57748ec24f6d071 /sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c
parentb832dcf87e792d42ee4017a314d2cba7c1cb14d3 (diff)
downloadFreeBSD-src-dc37eae42dd15564a82cb20381721692101d3a53.zip
FreeBSD-src-dc37eae42dd15564a82cb20381721692101d3a53.tar.gz
MFV r249354:
Merge bugfixes accepted and integrated by vendor. Underlying problems have been reported by us and fixed in r240942 and r249196. Illumos ZFS issues: 3645 dmu_send_impl: possibilty of pool hold leak 3692 Panic on zfs receive of a recursive deduplicated stream MFC after: 8 days
Diffstat (limited to 'sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c')
-rw-r--r--sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c
index ac8221c..5da0700 100644
--- a/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c
+++ b/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c
@@ -1692,7 +1692,7 @@ add_ds_to_guidmap(const char *name, avl_tree_t *guid_map, uint64_t snapobj)
err = dsl_pool_hold(name, FTAG, &dp);
if (err != 0)
return (err);
- gmep = kmem_alloc(sizeof (guid_map_entry_t), KM_SLEEP);
+ gmep = kmem_alloc(sizeof (*gmep), KM_SLEEP);
err = dsl_dataset_hold_obj(dp, snapobj, gmep, &snapds);
if (err == 0) {
gmep->guid = snapds->ds_phys->ds_guid;
@@ -1700,7 +1700,7 @@ add_ds_to_guidmap(const char *name, avl_tree_t *guid_map, uint64_t snapobj)
avl_add(guid_map, gmep);
dsl_dataset_long_hold(snapds, gmep);
} else
- kmem_free(gmep, sizeof (guid_map_entry_t));
+ kmem_free(gmep, sizeof (*gmep));
dsl_pool_rele(dp, FTAG);
return (err);
OpenPOWER on IntegriCloud