2024-12-10 06:44:25 +03:00
|
|
|
From 444f831f229a418b4865d11940b3987f55ab151f Mon Sep 17 00:00:00 2001
|
2024-10-29 05:12:06 +03:00
|
|
|
From: Alexandre Frade <kernel@xanmod.org>
|
|
|
|
Date: Mon, 16 Sep 2024 08:09:56 +0000
|
2024-12-10 06:44:25 +03:00
|
|
|
Subject: [PATCH 16/18] XANMOD: lib/kconfig.debug: disable default
|
2024-10-29 05:12:06 +03:00
|
|
|
SYMBOLIC_ERRNAME and DEBUG_BUGVERBOSE
|
|
|
|
|
|
|
|
Signed-off-by: Alexandre Frade <kernel@xanmod.org>
|
|
|
|
---
|
|
|
|
fs/bcachefs/Kconfig | 1 -
|
|
|
|
lib/Kconfig.debug | 4 ++--
|
|
|
|
2 files changed, 2 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
--- a/fs/bcachefs/Kconfig
|
|
|
|
+++ b/fs/bcachefs/Kconfig
|
|
|
|
@@ -23,7 +23,6 @@ config BCACHEFS_FS
|
|
|
|
select XOR_BLOCKS
|
|
|
|
select XXHASH
|
|
|
|
select SRCU
|
|
|
|
- select SYMBOLIC_ERRNAME
|
|
|
|
help
|
|
|
|
The bcachefs filesystem - a modern, copy on write filesystem, with
|
|
|
|
support for multiple devices, compression, checksumming, etc.
|
|
|
|
--- a/lib/Kconfig.debug
|
|
|
|
+++ b/lib/Kconfig.debug
|
|
|
|
@@ -190,7 +190,7 @@ config DYNAMIC_DEBUG_CORE
|
|
|
|
|
|
|
|
config SYMBOLIC_ERRNAME
|
|
|
|
bool "Support symbolic error names in printf"
|
|
|
|
- default y if PRINTK
|
|
|
|
+ default n
|
|
|
|
help
|
|
|
|
If you say Y here, the kernel's printf implementation will
|
|
|
|
be able to print symbolic error names such as ENOSPC instead
|
|
|
|
@@ -200,7 +200,7 @@ config SYMBOLIC_ERRNAME
|
|
|
|
config DEBUG_BUGVERBOSE
|
|
|
|
bool "Verbose BUG() reporting (adds 70K)" if DEBUG_KERNEL && EXPERT
|
|
|
|
depends on BUG && (GENERIC_BUG || HAVE_DEBUG_BUGVERBOSE)
|
|
|
|
- default y
|
|
|
|
+ default n
|
|
|
|
help
|
|
|
|
Say Y here to make BUG() panics output the file name and line number
|
|
|
|
of the BUG call as well as the EIP and oops trace. This aids
|