]> xenbits.xensource.com Git - people/julieng/freebsd.git/commitdiff
Reduce diff from upstream.
authormav <mav@FreeBSD.org>
Sun, 18 Oct 2015 18:25:00 +0000 (18:25 +0000)
committermav <mav@FreeBSD.org>
Sun, 18 Oct 2015 18:25:00 +0000 (18:25 +0000)
Should be no functional change.

cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c

index 18541604f4211f703733b27bc19378e31110df8e..bbab81b6cd7843ac18b24f9602aaa3fc5d64dac3 100644 (file)
@@ -3729,17 +3729,18 @@ zpool_history_unpack(char *buf, uint64_t bytes_read, uint64_t *leftover,
 int
 zpool_get_history(zpool_handle_t *zhp, nvlist_t **nvhisp)
 {
-       char *buf = NULL;
-       uint64_t bufsize = HIS_BUF_LEN_DEF;
+       char *buf;
+       uint64_t buflen = HIS_BUF_LEN_DEF;
        uint64_t off = 0;
        nvlist_t **records = NULL;
        uint_t numrecords = 0;
        int err, i;
 
-       if ((buf = malloc(bufsize)) == NULL)
+       buf = malloc(buflen);
+       if (buf == NULL)
                return (ENOMEM);
        do {
-               uint64_t bytes_read = bufsize;
+               uint64_t bytes_read = buflen;
                uint64_t leftover;
 
                if ((err = get_history(zhp, buf, &off, &bytes_read)) != 0)
@@ -3753,18 +3754,16 @@ zpool_get_history(zpool_handle_t *zhp, nvlist_t **nvhisp)
                    &leftover, &records, &numrecords)) != 0)
                        break;
                off -= leftover;
-
-               /*
-                * If the history block is too big, double the buffer
-                * size and try again.
-                */
                if (leftover == bytes_read) {
+                       /*
+                        * no progress made, because buffer is not big enough
+                        * to hold this record; resize and retry.
+                        */
+                       buflen *= 2;
                        free(buf);
                        buf = NULL;
-
-                       bufsize <<= 1;
-                       if ((bufsize >= HIS_BUF_LEN_MAX) ||
-                           ((buf = malloc(bufsize)) == NULL)) {
+                       if ((buflen >= HIS_BUF_LEN_MAX) ||
+                           ((buf = malloc(buflen)) == NULL)) {
                                err = ENOMEM;
                                break;
                        }
@@ -3772,6 +3771,7 @@ zpool_get_history(zpool_handle_t *zhp, nvlist_t **nvhisp)
 
                /* CONSTCOND */
        } while (1);
+
        free(buf);
 
        if (!err) {