The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=6616c7a9a17d1870a7f15aded0b499b1373ba8b0
commit 6616c7a9a17d1870a7f15aded0b499b1373ba8b0 Author: Jim Huang Chen <[email protected]> AuthorDate: 2026-05-25 16:23:29 +0000 Commit: Ed Maste <[email protected]> CommitDate: 2026-06-16 17:12:11 +0000 sys: Reserve EXTERR_CAT_LINKER for kld linker exterrors Reviewed by: imp, kib (in D57002) Sponsored by: The FreeBSD Foundation --- lib/libc/gen/exterr_cat_filenames.h | 1 + sys/sys/exterr_cat.h | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/libc/gen/exterr_cat_filenames.h b/lib/libc/gen/exterr_cat_filenames.h index be65c1990af5..90e231879ccd 100644 --- a/lib/libc/gen/exterr_cat_filenames.h +++ b/lib/libc/gen/exterr_cat_filenames.h @@ -12,6 +12,7 @@ [EXTERR_CAT_FILEDESC] = "kern/kern_descrip.c", [EXTERR_CAT_PROCEXIT] = "kern/kern_exit.c", [EXTERR_CAT_FORK] = "kern/kern_fork.c", + [EXTERR_CAT_LINKER] = "kern/kern_linker.c", [EXTERR_CAT_GENIO] = "kern/sys_generic.c", [EXTERR_CAT_VFSBIO] = "kern/vfs_bio.c", [EXTERR_CAT_INOTIFY] = "kern/vfs_inotify.c", diff --git a/sys/sys/exterr_cat.h b/sys/sys/exterr_cat.h index edc23d7dfbe6..1c3f894e8aff 100644 --- a/sys/sys/exterr_cat.h +++ b/sys/sys/exterr_cat.h @@ -41,6 +41,7 @@ #define EXTERR_CAT_PROCEXIT 16 #define EXTERR_CAT_VMM 17 #define EXTERR_CAT_HWPMC_IBS 18 +#define EXTERR_CAT_LINKER 19 #endif
