Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Apr 2026 17:09:36 +0000
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 75ae51b7241a - stable/15 - kdump(1): add sys/ prefix for exterror source file name
Message-ID:  <69ea5250.3d459.4d63efc6@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/15 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=75ae51b7241ace697eb9f3fa6f2f8ac3727c7390

commit 75ae51b7241ace697eb9f3fa6f2f8ac3727c7390
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2026-04-22 07:35:06 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2026-04-23 17:09:06 +0000

    kdump(1): add sys/ prefix for exterror source file name
    
    (cherry picked from commit 4d062dbc20dce5a94da8dca1253ac9337b951c51)
---
 usr.bin/kdump/kdump.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.bin/kdump/kdump.c b/usr.bin/kdump/kdump.c
index 9ebd18646474..75bee040a92c 100644
--- a/usr.bin/kdump/kdump.c
+++ b/usr.bin/kdump/kdump.c
@@ -2464,7 +2464,7 @@ ktrexterr(struct ktr_exterr *ke)
 
 	ue = &ke->ue;
 	asprintf(&msg, ue->msg, (uintmax_t)ue->p1, (uintmax_t)ue->p2);
-	printf("{ errno %d %s:%u \"%s\" (category %u p1 %#jx p2 %#jx) }\n",
+	printf("{ errno %d sys/%s:%u \"%s\" (category %u p1 %#jx p2 %#jx) }\n",
 	    ue->error, cat_to_filename(ue->cat), ue->src_line, msg,
 	    ue->cat, (uintmax_t)ue->p1, (uintmax_t)ue->p2);
 	free(msg);


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69ea5250.3d459.4d63efc6>