Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Sep 2025 13:09:49 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 92255335d945 - main - sys: Rename BLOAT_KERNEL_WITH_EXTERR to EXTERR_STRINGS
Message-ID:  <202509031309.583D9ndG039319@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=92255335d9451bd425074fab4447799113daf676

commit 92255335d9451bd425074fab4447799113daf676
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-09-02 20:58:29 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-09-03 13:09:09 +0000

    sys: Rename BLOAT_KERNEL_WITH_EXTERR to EXTERR_STRINGS
    
    There's no need for an implied value judgement.
    
    Suggested by:   jhb
    Reviewed by:    kib, jhb
    Sponsored by:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D52351
---
 UPDATING                 | 4 ++++
 sys/amd64/conf/GENERIC   | 2 +-
 sys/arm64/conf/std.arm64 | 2 +-
 sys/conf/options         | 2 +-
 sys/sys/exterrvar.h      | 2 +-
 5 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/UPDATING b/UPDATING
index 34f71af5464e..21c6e92d6454 100644
--- a/UPDATING
+++ b/UPDATING
@@ -27,6 +27,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 15.x IS SLOW:
 	world, or to merely disable the most expensive debugging functionality
 	at runtime, run "ln -s 'abort:false,junk:false' /etc/malloc.conf".)
 
+20250903:
+	The BLOAT_KERNEL_WITH_EXTERR kernel config option has been renamed to
+	EXTERR_STRINGS.
+
 20250827:
 	The names of pkg repositories defined in /etc/pkg/FreeBSD.conf have
 	changed: "FreeBSD" is now "FreeBSD-ports", and "FreeBSD-kmods" is now
diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC
index 81427b5b18b6..786edc4125c9 100644
--- a/sys/amd64/conf/GENERIC
+++ b/sys/amd64/conf/GENERIC
@@ -26,7 +26,7 @@ makeoptions	WITH_CTF=1		# Run ctfconvert(1) for DTrace support
 options 	SCHED_ULE		# ULE scheduler
 options 	NUMA			# Non-Uniform Memory Architecture support
 options 	PREEMPTION		# Enable kernel thread preemption
-options 	BLOAT_KERNEL_WITH_EXTERR
+options 	EXTERR_STRINGS
 options 	VIMAGE			# Subsystem virtualization, e.g. VNET
 options 	INET			# InterNETworking
 options 	INET6			# IPv6 communications protocols
diff --git a/sys/arm64/conf/std.arm64 b/sys/arm64/conf/std.arm64
index 8c8e3f4ada12..a0568466cfaf 100644
--- a/sys/arm64/conf/std.arm64
+++ b/sys/arm64/conf/std.arm64
@@ -7,7 +7,7 @@ makeoptions	WITH_CTF=1		# Run ctfconvert(1) for DTrace support
 options 	SCHED_ULE		# ULE scheduler
 options 	NUMA			# Non-Uniform Memory Architecture support
 options 	PREEMPTION		# Enable kernel thread preemption
-options 	BLOAT_KERNEL_WITH_EXTERR
+options 	EXTERR_STRINGS
 options 	VIMAGE			# Subsystem virtualization, e.g. VNET
 options 	INET			# InterNETworking
 options 	INET6			# IPv6 communications protocols
diff --git a/sys/conf/options b/sys/conf/options
index 4009ba2b4843..66f7f2ee2d7e 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -53,7 +53,7 @@ DDB_CAPTURE_MAXBUFSIZE	opt_ddb.h
 DDB_CTF		opt_ddb.h
 DDB_NUMSYM	opt_ddb.h
 EARLY_PRINTF	opt_global.h
-BLOAT_KERNEL_WITH_EXTERR	opt_global.h
+EXTERR_STRINGS	opt_global.h
 FULL_BUF_TRACKING	opt_global.h
 GDB
 KDB		opt_global.h
diff --git a/sys/sys/exterrvar.h b/sys/sys/exterrvar.h
index 7bf1d264ff5e..6783a0d2d84f 100644
--- a/sys/sys/exterrvar.h
+++ b/sys/sys/exterrvar.h
@@ -31,7 +31,7 @@
 #error "Specify error category before including sys/exterrvar.h"
 #endif
 
-#ifdef	BLOAT_KERNEL_WITH_EXTERR
+#ifdef	EXTERR_STRINGS
 #define	SET_ERROR_MSG(mmsg)	(mmsg)
 #else
 #define	SET_ERROR_MSG(mmsg)	NULL



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202509031309.583D9ndG039319>