On 5/24/21 2:31 PM, Randy Dunlap wrote:AFAICS, enabling FRAME_POINTER is a debugging aid as it enable more precise stacktrace. However, not all archs want to enable FRAME_POINTER because of LOCKDEP. Now you are just letting users decide if they want FRAME_POINTER or not. Maybe you can modify the help text to mention that.
On 5/24/21 2:04 PM, Waiman Long wrote:Hm, as I review that commit, I have to wonder if the previous 'select'
Is it possible to just get rid of the 2nd depends-on statement?and I should have looked at that history too. Thanks.
The 2nd depends-on line was introduced by commit 7d37cb2c912d ("lib: fix kconfig dependency on ARCH_WANT_FRAME_POINTER"):
Yes, I agree, we can just delete that line...
I'll send a v2 and copy the author of commit 7d37cb2c912d as well.
was correct (if we disregard the Kconfig warning). If so, then
FRAME_POINTER is still wanted/needed for some arch-es.
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 2779c29d9981..417c3d3e521b 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -1363,7 +1363,7 @@ config LOCKDEP
bool
depends on DEBUG_KERNEL && LOCK_DEBUGGING_SUPPORT
select STACKTRACE
- select FRAME_POINTER if !MIPS && !PPC && !ARM && !S390 && !MICROBLAZE && !ARC && !X86 <<<<<<<<<<<