git: 2168e15ee89b - main - Update commit 0d4642a to fix failed tests.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 16 Oct 2025 20:29:11 UTC
The branch main has been updated by mckusick:
URL: https://cgit.FreeBSD.org/src/commit/?id=2168e15ee89b4206d8e65a4ea04e4721f60f4060
commit 2168e15ee89b4206d8e65a4ea04e4721f60f4060
Author: Kirk McKusick <mckusick@FreeBSD.org>
AuthorDate: 2025-10-16 20:27:40 +0000
Commit: Kirk McKusick <mckusick@FreeBSD.org>
CommitDate: 2025-10-16 20:29:00 +0000
Update commit 0d4642a to fix failed tests.
Tests that fail are in
/root/.kyua/store/results.usr_tests_sys_geom_class_multipath.20251015-085403-959737.db
Submitted-by: Johan Söllvander
MFC-after: 1 week
Differential Revision: https://reviews.freebsd.org/D53110
---
sbin/geom/core/geom.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sbin/geom/core/geom.c b/sbin/geom/core/geom.c
index 496123f08274..1a4f7e1f061a 100644
--- a/sbin/geom/core/geom.c
+++ b/sbin/geom/core/geom.c
@@ -968,7 +968,7 @@ list_one_geom(struct ggeom *gp)
xo_emit("{Tc:Providers}\n");
n = 1;
LIST_FOREACH(pp, &gp->lg_provider, lg_provider) {
- xo_emit("{T:/%u} ", n++);
+ xo_emit("{T:/%u}. ", n++);
xo_open_instance("provider");
list_one_provider(pp, " ");
xo_close_instance("provider");
@@ -980,7 +980,7 @@ list_one_geom(struct ggeom *gp)
xo_emit("{Tc:Consumers}\n");
n = 1;
LIST_FOREACH(cp, &gp->lg_consumer, lg_consumer) {
- xo_emit("{T:/%u} ", n++);
+ xo_emit("{T:/%u}. ", n++);
xo_open_instance("consumer");
list_one_consumer(cp, " ");
xo_close_instance("consumer");