Update zfs-snapshot.8
commitd0d2733204ea5e4d0f12967cd93c3b9416ed59a3
authorShawn Bayern <sbayern@law.fsu.edu>
Thu, 8 Feb 2024 21:06:12 +0000 (8 16:06 -0500)
committerGitHub <noreply@github.com>
Thu, 8 Feb 2024 21:06:12 +0000 (8 13:06 -0800)
treeaf13e0fca62ebe7ee4ebe4bbca6c8327524e613d
parenta5a725440bcb2f4c4554be3e489f911e3dd60412
Update zfs-snapshot.8

Fixes a small inaccuracy in the description of snapshot
atomicity

zfs-snapshot(8) appears to contain a small error.  The existing
version reads "Snapshots are taken atomically, so that all
snapshots correspond to the same moment in time."  Per
zfs_main.c, which in do_snapshot() simply loops over argv, this
does not appear to be correct when multiple snapshots are
specified explicitly on the command line.  I believe the intent
of the man page was to say that *recursive* snapshots are all
created atomically.

This proposed change fixes that error.  Because the existing
statement may confuse some readers anyway, the commit also also
adds a small amount of general explanatory information that may
be helpful.

The change also adds an introductory sentence that summarizes
what 'zfs snapshot' does in the first place.  In that sentence,
the text "different datasets" is intended to indicate that
(again per the code) the same dataset cannot be specified
multiple times on the command line.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Shawn Bayern <sbayern@law.fsu.edu>
Closes #15857
man/man8/zfs-snapshot.8