summaryrefslogtreecommitdiff
path: root/usr/src/lib/libzfs
diff options
context:
space:
mode:
authorJerry Jelinek <jerry.jelinek@joyent.com>2016-04-21 12:20:05 +0000
committerJerry Jelinek <jerry.jelinek@joyent.com>2016-04-21 12:20:05 +0000
commit3eacfc2b49fb2e87d561b8204560f9464c0a18cb (patch)
tree01047ff5c7170d1af406588e3bc0a933fdc591b5 /usr/src/lib/libzfs
parenta3ff90a8ed2ff994c15b0dca337baf1814d00b38 (diff)
parent20fea7a47472aceb64d3ed48cc2a3ea268bc4795 (diff)
downloadillumos-joyent-3eacfc2b49fb2e87d561b8204560f9464c0a18cb.tar.gz
[illumos-gate merge]
commit 20fea7a47472aceb64d3ed48cc2a3ea268bc4795 6879 incorrect endianness swap for drr_spill.drr_length in libzfs_sendrecv.c commit c5d1600c3eb0a58e493be9019c5fb8eaec72cb81 6880 zdb incorrectly reports feature count mismatch when feature is disabled commit 88a916040716032880a2a28e8f26912aef5426da 6877 zfs_rename_006_pos fails due to missing zvol snapshot device file commit 8fc922875ed266f52ccd5cc6f973b9ad0839c710 6871 libzpool implementation of thread_create should enforce length is 0 commit f83b46baf98d276f5f84fa84c8b461f412ac1f5e 6872 zfs libraries should not allow uninitialized variables commit 80309ff2cfc900b5f6acfe1d7f72cf67baf81fbe 6870 Update zoneinfo to 2016c (zone_sun.tab mismerge) commit 232f5a2e6e6fcc0e7d4f5bd719cd5e6433a24020 6875 fix zfs-tests ACL cases commit da412744bc6f902e4519ae67e92191a2e5d85e2c 6765 zfs_zaccess_delete() comments do not accurately reflect delete permissions for ACLs commit de0f1ddb598506a5d9a02946b67e9300b5f2a7cd 6764 zfs issues with inheritance flags during chmod(2) with aclmode=passthrough commit 851632d6a88d512574719953cc01ae7c2ed66b88 6763 aclinherit=restricted masks inherited permissions by group perms (groupmask) commit 1eb4e906ec75b9bde421954ace46ef137b0fc9eb 6762 POSIX write should imply DELETE_CHILD on directories - and some additional considerations
Diffstat (limited to 'usr/src/lib/libzfs')
-rw-r--r--usr/src/lib/libzfs/Makefile.com3
-rw-r--r--usr/src/lib/libzfs/common/libzfs_dataset.c7
-rw-r--r--usr/src/lib/libzfs/common/libzfs_import.c6
-rw-r--r--usr/src/lib/libzfs/common/libzfs_sendrecv.c2
-rw-r--r--usr/src/lib/libzfs/common/libzfs_util.c2
5 files changed, 10 insertions, 10 deletions
diff --git a/usr/src/lib/libzfs/Makefile.com b/usr/src/lib/libzfs/Makefile.com
index c9632dadd8..e07700aca3 100644
--- a/usr/src/lib/libzfs/Makefile.com
+++ b/usr/src/lib/libzfs/Makefile.com
@@ -20,7 +20,7 @@
#
#
# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
-# Copyright (c) 2011, 2014 by Delphix. All rights reserved.
+# Copyright (c) 2011, 2015 by Delphix. All rights reserved.
#
LIBRARY= libzfs.a
@@ -77,7 +77,6 @@ $(DYNLIB) := LDLIBS += -lz
CERRWARN += -_gcc=-Wno-switch
CERRWARN += -_gcc=-Wno-parentheses
-CERRWARN += -_gcc=-Wno-uninitialized
CERRWARN += -_gcc=-Wno-unused-function
SRCS= $(OBJS_COMMON:%.o=$(SRCDIR)/%.c) \
diff --git a/usr/src/lib/libzfs/common/libzfs_dataset.c b/usr/src/lib/libzfs/common/libzfs_dataset.c
index 77db126b5b..a31f203315 100644
--- a/usr/src/lib/libzfs/common/libzfs_dataset.c
+++ b/usr/src/lib/libzfs/common/libzfs_dataset.c
@@ -1550,7 +1550,7 @@ zfs_prop_set_list(zfs_handle_t *zhp, nvlist_t *props)
libzfs_handle_t *hdl = zhp->zfs_hdl;
nvlist_t *nvl;
int nvl_len;
- int added_resv;
+ int added_resv = 0;
(void) snprintf(errbuf, sizeof (errbuf),
dgettext(TEXT_DOMAIN, "cannot set property for '%s'"),
@@ -3160,7 +3160,7 @@ zfs_create_ancestors(libzfs_handle_t *hdl, const char *path)
{
int prefix;
char *path_copy;
- int rc;
+ int rc = 0;
if (check_parents(hdl, path, NULL, B_TRUE, &prefix) != 0)
return (-1);
@@ -3799,7 +3799,7 @@ zfs_rollback(zfs_handle_t *zhp, zfs_handle_t *snap, boolean_t force)
rollback_data_t cb = { 0 };
int err;
boolean_t restore_resv = 0;
- uint64_t old_volsize, new_volsize;
+ uint64_t old_volsize = 0, new_volsize;
zfs_prop_t resv_prop;
assert(zhp->zfs_type == ZFS_TYPE_FILESYSTEM ||
@@ -3988,6 +3988,7 @@ zfs_rename(zfs_handle_t *zhp, const char *target, boolean_t recursive,
"child dataset with inherited mountpoint is used "
"in a non-global zone"));
(void) zfs_error(hdl, EZFS_ZONED, errbuf);
+ ret = -1;
goto error;
}
diff --git a/usr/src/lib/libzfs/common/libzfs_import.c b/usr/src/lib/libzfs/common/libzfs_import.c
index 16c2681013..b73a71e94c 100644
--- a/usr/src/lib/libzfs/common/libzfs_import.c
+++ b/usr/src/lib/libzfs/common/libzfs_import.c
@@ -21,7 +21,7 @@
/*
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
- * Copyright (c) 2013 by Delphix. All rights reserved.
+ * Copyright (c) 2012, 2015 by Delphix. All rights reserved.
* Copyright 2015 RackTop Systems.
* Copyright 2016 Nexenta Systems, Inc.
*/
@@ -438,12 +438,12 @@ get_configs(libzfs_handle_t *hdl, pool_list_t *pl, boolean_t active_ok)
pool_entry_t *pe;
vdev_entry_t *ve;
config_entry_t *ce;
- nvlist_t *ret = NULL, *config = NULL, *tmp, *nvtop, *nvroot;
+ nvlist_t *ret = NULL, *config = NULL, *tmp = NULL, *nvtop, *nvroot;
nvlist_t **spares, **l2cache;
uint_t i, nspares, nl2cache;
boolean_t config_seen;
uint64_t best_txg;
- char *name, *hostname;
+ char *name, *hostname = NULL;
uint64_t guid;
uint_t children = 0;
nvlist_t **child = NULL;
diff --git a/usr/src/lib/libzfs/common/libzfs_sendrecv.c b/usr/src/lib/libzfs/common/libzfs_sendrecv.c
index 456ad3b858..988bbe3dcc 100644
--- a/usr/src/lib/libzfs/common/libzfs_sendrecv.c
+++ b/usr/src/lib/libzfs/common/libzfs_sendrecv.c
@@ -2825,7 +2825,7 @@ recv_skip(libzfs_handle_t *hdl, int fd, boolean_t byteswap)
break;
case DRR_SPILL:
if (byteswap) {
- drr->drr_u.drr_write.drr_length =
+ drr->drr_u.drr_spill.drr_length =
BSWAP_64(drr->drr_u.drr_spill.drr_length);
}
(void) recv_read(hdl, fd, buf,
diff --git a/usr/src/lib/libzfs/common/libzfs_util.c b/usr/src/lib/libzfs/common/libzfs_util.c
index 9f90788b0e..b5adef2893 100644
--- a/usr/src/lib/libzfs/common/libzfs_util.c
+++ b/usr/src/lib/libzfs/common/libzfs_util.c
@@ -1008,7 +1008,7 @@ zprop_print_one_property(const char *name, zprop_get_cbdata_t *cbp,
const char *source, const char *recvd_value)
{
int i;
- const char *str;
+ const char *str = NULL;
char buf[128];
/*