summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README5
-rw-r--r--libblkid/src/superblocks/stratis.c4
-rw-r--r--sys-utils/dmesg.12
3 files changed, 6 insertions, 5 deletions
diff --git a/README b/README
index 565693287..7f07d7d3f 100644
--- a/README
+++ b/README
@@ -7,8 +7,9 @@
MAILING LIST:
- E-MAIL: util-linux@vger.kernel.org
- URL: http://vger.kernel.org/vger-lists.html#util-linux
+ E-MAIL: util-linux@vger.kernel.org
+ URL: http://vger.kernel.org/vger-lists.html#util-linux
+ ARCHIVE: https://lore.kernel.org/util-linux/
The mailing list will reject email messages that contain:
- more than 100K characters
diff --git a/libblkid/src/superblocks/stratis.c b/libblkid/src/superblocks/stratis.c
index 7fdee2b38..7a889b2d4 100644
--- a/libblkid/src/superblocks/stratis.c
+++ b/libblkid/src/superblocks/stratis.c
@@ -83,9 +83,9 @@ static int probe_stratis(blkid_probe pr,
sizeof(stratis->pool_uuid));
blkid_probe_sprintf_value(pr, "BLOCKDEV_SECTORS", "%" PRIu64,
- stratis->sectors);
+ le64_to_cpu(stratis->sectors));
blkid_probe_sprintf_value(pr, "BLOCKDEV_INITTIME", "%" PRIu64,
- stratis->initialization_time);
+ le64_to_cpu(stratis->initialization_time));
return 0;
}
diff --git a/sys-utils/dmesg.1 b/sys-utils/dmesg.1
index adf5214b4..a93821aea 100644
--- a/sys-utils/dmesg.1
+++ b/sys-utils/dmesg.1
@@ -100,7 +100,7 @@ output.
For example,
.B \-n 1
or
-.B \-n alert
+.B \-n emerg
prevents all messages, except emergency (panic) messages, from appearing on
the console. All levels of messages are still written to
.IR /proc/kmsg ,