diff options
author | Ryan Moeller <[email protected]> | 2021-08-18 21:01:21 +0000 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2022-02-01 17:03:38 -0800 |
commit | 45932229d5aa2faea4dd2d26b014ab5cd8210102 (patch) | |
tree | 26b682075e813d522c4682eff86f2ba9701068c9 /lib/libzfs | |
parent | 1910a3084872857ee997f09097a5240adbdf6530 (diff) |
libzfs_sendrecv: Style pass on dump_filesystems
* Add a high level comment.
* Eliminate unnecessarily void arg.
* Capitalize and punctuate complete sentences in comments.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #12967
Diffstat (limited to 'lib/libzfs')
-rw-r--r-- | lib/libzfs/libzfs_sendrecv.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/libzfs/libzfs_sendrecv.c b/lib/libzfs/libzfs_sendrecv.c index 751e34a92..f96f1aa93 100644 --- a/lib/libzfs/libzfs_sendrecv.c +++ b/lib/libzfs/libzfs_sendrecv.c @@ -1270,10 +1270,12 @@ dump_filesystem(zfs_handle_t *zhp, send_dump_data_t *sdd) return (rv); } +/* + * Send all snapshots for all filesystems in sdd. + */ static int -dump_filesystems(zfs_handle_t *rzhp, void *arg) +dump_filesystems(zfs_handle_t *rzhp, send_dump_data_t *sdd) { - send_dump_data_t *sdd = arg; nvpair_t *fspair; boolean_t needagain, progress; @@ -1326,7 +1328,7 @@ again: if (parent_guid != 0) { parent_nv = fsavl_find(sdd->fsavl, parent_guid, NULL); if (!nvlist_exists(parent_nv, "sent")) { - /* parent has not been sent; skip this one */ + /* Parent has not been sent; skip this one. */ needagain = B_TRUE; continue; } @@ -1338,7 +1340,7 @@ again: if (origin_nv != NULL && !nvlist_exists(origin_nv, "sent")) { /* - * origin has not been sent yet; + * Origin has not been sent yet; * skip this clone. */ needagain = B_TRUE; @@ -1361,7 +1363,7 @@ again: goto again; } - /* clean out the sent flags in case we reuse this fss */ + /* Clean out the sent flags in case we reuse this fss. */ for (fspair = nvlist_next_nvpair(sdd->fss, NULL); fspair; fspair = nvlist_next_nvpair(sdd->fss, fspair)) { nvlist_t *fslist; |