summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Zak2018-08-16 14:00:45 +0200
committerKarel Zak2018-08-16 14:00:45 +0200
commit26b6525a51af3eb41db5c4a38ff5fb3398ea4f3e (patch)
tree8fa76265b5daa50b879d558ba98b3d2873c052d7
parentMerge branch 'spelling' of https://github.com/jwilk-forks/util-linux (diff)
downloadkernel-qcow2-util-linux-26b6525a51af3eb41db5c4a38ff5fb3398ea4f3e.tar.gz
kernel-qcow2-util-linux-26b6525a51af3eb41db5c4a38ff5fb3398ea4f3e.tar.xz
kernel-qcow2-util-linux-26b6525a51af3eb41db5c4a38ff5fb3398ea4f3e.zip
fstrim: use -n shortcut for --dry-run
It seems 'n' is more common than 'd'. The patch also cleanup getopt_long() options string. Addresses: https://github.com/karelzak/util-linux/commit/fda0e2cf043994c77c29a2d109c03ce8957b1d38#commitcomment-30097920 Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r--sys-utils/fstrim.82
-rw-r--r--sys-utils/fstrim.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/sys-utils/fstrim.8 b/sys-utils/fstrim.8
index 4e052a546..ff572a44b 100644
--- a/sys-utils/fstrim.8
+++ b/sys-utils/fstrim.8
@@ -60,7 +60,7 @@ The other supplied options, like \fB\-\-offset\fR, \fB\-\-length\fR and
\fB-\-minimum\fR, are applied to all these devices.
Errors from filesystems that do not support the discard operation are silently
ignored.
-.IP "\fB\-d, \-\-dry\-run\fP"
+.IP "\fB\-n, \-\-dry\-run\fP"
This option does everything apart from actually call FITRIM ioctl.
.IP "\fB\-o, \-\-offset\fP \fIoffset\fP"
Byte offset in the filesystem from which to begin searching for free blocks
diff --git a/sys-utils/fstrim.c b/sys-utils/fstrim.c
index 624ffa309..b1823f5c5 100644
--- a/sys-utils/fstrim.c
+++ b/sys-utils/fstrim.c
@@ -348,7 +348,7 @@ int main(int argc, char **argv)
{ "length", required_argument, NULL, 'l' },
{ "minimum", required_argument, NULL, 'm' },
{ "verbose", no_argument, NULL, 'v' },
- { "dry-run", no_argument, NULL, 'd' },
+ { "dry-run", no_argument, NULL, 'n' },
{ NULL, 0, NULL, 0 }
};
@@ -357,7 +357,7 @@ int main(int argc, char **argv)
textdomain(PACKAGE);
atexit(close_stdout);
- while ((c = getopt_long(argc, argv, "AadhVo:l:m:v", longopts, NULL)) != -1) {
+ while ((c = getopt_long(argc, argv, "Aahl:m:no:Vv", longopts, NULL)) != -1) {
switch(c) {
case 'A':
ctl.fstab = 1;
@@ -365,7 +365,7 @@ int main(int argc, char **argv)
case 'a':
all = 1;
break;
- case 'd':
+ case 'n':
ctl.dryrun = 1;
break;
case 'h':