]> git.proxmox.com Git - mirror_zfs.git/commitdiff
libzfs_sendrecv: Fix some comment style nits
authorRyan Moeller <freqlabs@FreeBSD.org>
Mon, 13 Sep 2021 14:51:02 +0000 (14:51 +0000)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 2 Feb 2022 01:03:45 +0000 (17:03 -0800)
* Capitalize and punctuate complete sentences.
* Add a blank line between functions.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ryan Moeller <freqlabs@FreeBSD.org>
Closes #12967

lib/libzfs/libzfs_sendrecv.c

index f96f1aa9332ad1e909a09f884122439a787bef0c..e034b437899168ad3cf0296faf5dd21b1d4ad762 100644 (file)
@@ -1402,7 +1402,7 @@ zfs_send_resume_token_to_nvlist(libzfs_handle_t *hdl, const char *token)
                return (NULL);
        }
 
-       /* convert hexadecimal representation to binary */
+       /* Convert hexadecimal representation to binary. */
        token = strrchr(token, '-') + 1;
        int len = strlen(token) / 2;
        unsigned char *compressed = zfs_alloc(hdl, len);
@@ -1417,7 +1417,7 @@ zfs_send_resume_token_to_nvlist(libzfs_handle_t *hdl, const char *token)
                }
        }
 
-       /* verify checksum */
+       /* Verify checksum. */
        zio_cksum_t cksum;
        fletcher_4_native_varsize(compressed, len, &cksum);
        if (cksum.zc_word[0] != checksum) {
@@ -1427,7 +1427,7 @@ zfs_send_resume_token_to_nvlist(libzfs_handle_t *hdl, const char *token)
                return (NULL);
        }
 
-       /* uncompress */
+       /* Uncompress. */
        void *packed = zfs_alloc(hdl, packed_len);
        uLongf packed_len_long = packed_len;
        if (uncompress(packed, &packed_len_long, compressed, len) != Z_OK ||
@@ -1439,7 +1439,7 @@ zfs_send_resume_token_to_nvlist(libzfs_handle_t *hdl, const char *token)
                return (NULL);
        }
 
-       /* unpack nvlist */
+       /* Unpack nvlist. */
        nvlist_t *nv;
        int error = nvlist_unpack(packed, packed_len, &nv, KM_SLEEP);
        free(packed);
@@ -1451,6 +1451,7 @@ zfs_send_resume_token_to_nvlist(libzfs_handle_t *hdl, const char *token)
        }
        return (nv);
 }
+
 static enum lzc_send_flags
 lzc_flags_from_sendflags(const sendflags_t *flags)
 {