diff options
author | ahrens <none@none> | 2006-10-09 10:56:01 -0700 |
---|---|---|
committer | ahrens <none@none> | 2006-10-09 10:56:01 -0700 |
commit | a2eea2e101e6a163a537dcc6d4e3c4da2a0ea5b2 (patch) | |
tree | 5f193ba1728494818f1a03b72fce7ee912153147 /usr/src/lib/libzfs/common/libzfs_util.c | |
parent | 2401904da3a3a741ce3aa7e27493641b2257523f (diff) | |
download | illumos-joyent-a2eea2e101e6a163a537dcc6d4e3c4da2a0ea5b2.tar.gz |
6460059 zfs destroy <snapshot> leaves behind kruft
6463788 'zfs recv -d' fails if some ancestors already exist
6464897 assertion failed: "BP_GET_COMPRESS(bp) == compress" zio.c, line:897
6472843 panic when write to zvol snapshot
6475506 panic in dmu_recvbackup due to NULL pointer dereference
6475942 need more assertions in dnode_destroy()
6477102 recvbackup ioctl does not advance file offset
6477103 read-only properties should be passed as nvlist
6477900 want more /etc/system tunables for ZFS performance analysis
6479497 ::abuf_find is broken
Diffstat (limited to 'usr/src/lib/libzfs/common/libzfs_util.c')
-rw-r--r-- | usr/src/lib/libzfs/common/libzfs_util.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr/src/lib/libzfs/common/libzfs_util.c b/usr/src/lib/libzfs/common/libzfs_util.c index 39fe569959..f2ae354427 100644 --- a/usr/src/lib/libzfs/common/libzfs_util.c +++ b/usr/src/lib/libzfs/common/libzfs_util.c @@ -502,7 +502,7 @@ int zcmd_alloc_dst_nvlist(libzfs_handle_t *hdl, zfs_cmd_t *zc, size_t len) { if (len == 0) - len = 1024; + len = 2048; zc->zc_nvlist_dst_size = len; if ((zc->zc_nvlist_dst = (uint64_t)(uintptr_t) zfs_alloc(hdl, zc->zc_nvlist_dst_size)) == NULL) @@ -529,10 +529,7 @@ zcmd_expand_dst_nvlist(libzfs_handle_t *hdl, zfs_cmd_t *zc) } /* - * Called to free the destination nvlist stored in the command structure. This - * is only needed if the caller must abort abnormally. The various other - * zcmd_*() routines will free it on failure (or on success, for - * zcmd_read_nvlist). + * Called to free the src and dst nvlists stored in the command structure. */ void zcmd_free_nvlists(zfs_cmd_t *zc) |