aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Broz <gmazyland@gmail.com>2024-02-20 14:44:18 +0100
committerMilan Broz <gmazyland@gmail.com>2024-02-22 20:58:35 +0000
commitcbf818a66066ac146ba6d5932b0c99d5d0e27655 (patch)
treecbb16b45533a3cb0dd80bb5cdf4c9d26dc865cb3
parent3ff8d55a8b03b830db88f3846e3b1142b1dac064 (diff)
downloadcryptsetup-cbf818a66066ac146ba6d5932b0c99d5d0e27655.tar.gz
Fix JSON exampe in progress-frequency option.
-rw-r--r--man/common_options.adoc4
-rw-r--r--man/integritysetup.8.adoc4
2 files changed, 4 insertions, 4 deletions
diff --git a/man/common_options.adoc b/man/common_options.adoc
index 497d7fda..6fc712b3 100644
--- a/man/common_options.adoc
+++ b/man/common_options.adoc
@@ -575,11 +575,11 @@ progress (except it's compact single line):
+
....
{
- "device":"/dev/sda" // backing device or file
+ "device":"/dev/sda", // backing device or file
"device_bytes":"8192", // bytes of I/O so far
"device_size":"44040192", // total bytes of I/O to go
"speed":"126877696", // calculated speed in bytes per second (based on progress so far)
- "eta_ms":"2520012" // estimated time to finish an operation in milliseconds
+ "eta_ms":"2520012", // estimated time to finish an operation in milliseconds
"time_ms":"5561235" // total time spent in IO operation in milliseconds
}
....
diff --git a/man/integritysetup.8.adoc b/man/integritysetup.8.adoc
index e89b0f76..137570b1 100644
--- a/man/integritysetup.8.adoc
+++ b/man/integritysetup.8.adoc
@@ -100,11 +100,11 @@ wipe progress (except it's compact single line):
+
....
{
- "device":"/dev/sda" // backing device or file
+ "device":"/dev/sda", // backing device or file
"device_bytes":"8192", // bytes wiped so far
"device_size":"44040192", // total bytes to wipe
"speed":"126877696", // calculated speed in bytes per second (based on progress so far)
- "eta_ms":"2520012" // estimated time to finish wipe in milliseconds
+ "eta_ms":"2520012", // estimated time to finish wipe in milliseconds
"time_ms":"5561235" // total time spent wiping device in milliseconds
}
....