forked from pool/bcache-tools
Jan Engelhardt
3dff4d17f4
- Remove dependence of smartcols bcache-tools.spec, bcache-tools code doesn't need it now. (jsc#SLE-9807) - Remove 1001-udev-do-not-rely-on-DRIVER-variable.patch because we have 0013-bcache-tools-Export-CACHED_UUID-and-CACHED_LABEL.patch to provide static UUIDs. (jsc#SLE-9807) - bcache-tools: add man page bcache-status.8 (jsc#SLE-9807) 0017-bcache-tools-add-man-page-bcache-status.8.patch - bcache-tools: add bcache-status (jsc#SLE-9807) 0016-bcache-tools-add-bcache-status.patch - bcache-tools: make: permit only one cache device to be specified (jsc#SLE-9807) 0015-bcache-tools-make-permit-only-one-cache-device-to-be.patch - bcache-tools: Remove the dependency on libsmartcols (jsc#SLE-9807) 0014-bcache-tools-Remove-the-dependency-on-libsmartcols.patch - bcache-tools: Export CACHED_UUID and CACHED_LABEL (jsc#SLE-9807) 0013-bcache-tools-Export-CACHED_UUID-and-CACHED_LABEL.patch - bcache-tools: Fix potential coredump issues (jsc#SLE-9807) 0012-bcache-tools-Fix-potential-coredump-issues.patch - bcache-tools: add print_cache_set_supported_feature_sets() in lib.c (jsc#SLE-9807) 0011-bcache-tools-add-print_cache_set_supported_feature_s.patch - bcache-tools: add large_bucket incompat feature (jsc#SLE-9807) 0010-bcache-tools-add-large_bucket-incompat-feature.patch - bcache-tools: upgrade super block versions for feature sets (jsc#SLE-9807) 0009-bcache-tools-upgrade-super-block-versions-for-featur.patch - bcache-tools: define separated super block for in-memory and on-disk format (jsc#SLE-9807) OBS-URL: https://build.opensuse.org/request/show/841483 OBS-URL: https://build.opensuse.org/package/show/filesystems/bcache-tools?expand=0&rev=27
73 lines
1.5 KiB
Diff
73 lines
1.5 KiB
Diff
From 91fd5fb518ae535e36cff1ae188d1bcef874cf40 Mon Sep 17 00:00:00 2001
|
|
From: Coly Li <colyli@suse.de>
|
|
Date: Wed, 2 Sep 2020 20:09:06 +0800
|
|
Subject: [PATCH 17/17] bcache-tools: add man page bcache-status.8
|
|
Git-commit: 91fd5fb518ae535e36cff1ae188d1bcef874cf40
|
|
Patch-mainline: bcache-tools-1.1
|
|
References: jsc#SLE-9807
|
|
|
|
Add the initial man page for bcache-status.
|
|
|
|
Signed-off-by: Coly Li <colyli@suse.de>
|
|
---
|
|
bcache-status.8 | 47 +++++++++++++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 47 insertions(+)
|
|
create mode 100644 bcache-status.8
|
|
|
|
diff --git a/bcache-status.8 b/bcache-status.8
|
|
new file mode 100644
|
|
index 0000000..f56cfb6
|
|
--- /dev/null
|
|
+++ b/bcache-status.8
|
|
@@ -0,0 +1,47 @@
|
|
+.TH bcache-status 8
|
|
+.SH NAME
|
|
+bcache-status \- Display useful bcache statistics
|
|
+
|
|
+.SH SYNOPSIS
|
|
+.B bcache-status [ --help ] [ -f ] [ -h ] [ -d ] [ -t ] [ -a ] [ -r ] [ -s ] [ -g ]
|
|
+
|
|
+.SH DESCRIPTION
|
|
+This command displays useful bcache statistics in a convenient way.
|
|
+
|
|
+.SH OPTIONS
|
|
+
|
|
+.TP
|
|
+.BR \-\-help
|
|
+Print help message and exit.
|
|
+
|
|
+.TP
|
|
+.BR \-f ", " \-\-five\-minute
|
|
+Print the last five minutes of stats.
|
|
+
|
|
+.TP
|
|
+.BR \-h ", " \-\-hour
|
|
+Print the last hour of stats.
|
|
+
|
|
+.TP
|
|
+.BR \-d ", " \-\-day
|
|
+Print the last day of stats.
|
|
+
|
|
+.TP
|
|
+.BR \-t ", " \-\-total
|
|
+Print total stats.
|
|
+
|
|
+.TP
|
|
+.BR \-a ", " \-\-all
|
|
+Print all stats.
|
|
+
|
|
+.TP
|
|
+.BR \-r ", " \-\-reset\-stats
|
|
+Reset stats after printing them.
|
|
+
|
|
+.TP
|
|
+.BR \-s ", " \-\-sub\-status
|
|
+Print subdevice status.
|
|
+
|
|
+.TP
|
|
+.BR \-g ", " \-\-gc
|
|
+Invoke GC before printing status (root only).
|
|
--
|
|
2.26.2
|
|
|