stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: fix function graph tracer and unwinder dependencies
       [not found]     ` <YzLZIX+Pi6lyIr1f@linutronix.de>
@ 2022-10-05  8:43       ` Sebastian Andrzej Siewior
  2022-10-05 16:43         ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Sebastian Andrzej Siewior @ 2022-10-05  8:43 UTC (permalink / raw)
  To: stable
  Cc: linux-rt-users, Danilo Cezar Zanella, Masami Hiramatsu,
	Russell King, Thomas Gleixner

Danilo Cezar Zanella reported broken function graph tracer in the v4.19
tree. This was caused by the backport of commit
   f9b58e8c7d031 ("ARM: 8800/1: use choice for kernel unwinders")

which ended in the v4.19-stable tree as of v4.19.222.
It is also part of v4.14-stable since v4.14.259.
It is also part of v4.9-stable since v4.9.299.

------->8---------

From: Russell King <rmk+kernel@armlinux.org.uk>
Date: Tue, 23 Apr 2019 17:09:38 +0100
Subject: [PATCH] ARM: fix function graph tracer and unwinder dependencies

Upstream commit 503621628b32782a07b2318e4112bd4372aa3401

Naresh Kamboju recently reported that the function-graph tracer crashes
on ARM. The function-graph tracer assumes that the kernel is built with
frame pointers.

We explicitly disabled the function-graph tracer when building Thumb2,
since the Thumb2 ABI doesn't have frame pointers.

We recently changed the way the unwinder method was selected, which
seems to have made it more likely that we can end up with the function-
graph tracer enabled but without the kernel built with frame pointers.

Fix up the function graph tracer dependencies so the option is not
available when we have no possibility of having frame pointers, and
adjust the dependencies on the unwinder option to hide the non-frame
pointer unwinder options if the function-graph tracer is enabled.

Reviewed-by: Masami Hiramatsu <mhiramat@kernel.org>
Tested-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Reported-by: Danilo Cezar Zanella <danilo.zanella@iag.usp.br>
---
 arch/arm/Kconfig       | 2 +-
 arch/arm/Kconfig.debug | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index d89d013f586cb..fce7e85f3ef57 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -68,7 +68,7 @@ config ARM
 	select HAVE_EFFICIENT_UNALIGNED_ACCESS if (CPU_V6 || CPU_V6K || CPU_V7) && MMU
 	select HAVE_EXIT_THREAD
 	select HAVE_FTRACE_MCOUNT_RECORD if (!XIP_KERNEL)
-	select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL)
+	select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL && !CC_IS_CLANG)
 	select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
 	select HAVE_FUTEX_CMPXCHG if FUTEX
 	select HAVE_GCC_PLUGINS
diff --git a/arch/arm/Kconfig.debug b/arch/arm/Kconfig.debug
index 01c760929c9e4..b931fac129a1b 100644
--- a/arch/arm/Kconfig.debug
+++ b/arch/arm/Kconfig.debug
@@ -47,8 +47,8 @@ config DEBUG_WX
 
 choice
 	prompt "Choose kernel unwinder"
-	default UNWINDER_ARM if AEABI && !FUNCTION_GRAPH_TRACER
-	default UNWINDER_FRAME_POINTER if !AEABI || FUNCTION_GRAPH_TRACER
+	default UNWINDER_ARM if AEABI
+	default UNWINDER_FRAME_POINTER if !AEABI
 	help
 	  This determines which method will be used for unwinding kernel stack
 	  traces for panics, oopses, bugs, warnings, perf, /proc/<pid>/stack,
@@ -65,7 +65,7 @@ config UNWINDER_FRAME_POINTER
 
 config UNWINDER_ARM
 	bool "ARM EABI stack unwinder"
-	depends on AEABI
+	depends on AEABI && !FUNCTION_GRAPH_TRACER
 	select ARM_UNWIND
 	help
 	  This option enables stack unwinding support in the kernel
-- 
2.37.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ARM: fix function graph tracer and unwinder dependencies
  2022-10-05  8:43       ` [PATCH] ARM: fix function graph tracer and unwinder dependencies Sebastian Andrzej Siewior
@ 2022-10-05 16:43         ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2022-10-05 16:43 UTC (permalink / raw)
  To: Sebastian Andrzej Siewior
  Cc: stable, linux-rt-users, Danilo Cezar Zanella, Masami Hiramatsu,
	Russell King, Thomas Gleixner

On Wed, Oct 05, 2022 at 10:43:34AM +0200, Sebastian Andrzej Siewior wrote:
> Danilo Cezar Zanella reported broken function graph tracer in the v4.19
> tree. This was caused by the backport of commit
>    f9b58e8c7d031 ("ARM: 8800/1: use choice for kernel unwinders")
> 
> which ended in the v4.19-stable tree as of v4.19.222.
> It is also part of v4.14-stable since v4.14.259.
> It is also part of v4.9-stable since v4.9.299.
> 

Now queued up, thanks.

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-10-05 16:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CAAxUTH4zpibkhOS+NPzcYsXFqx1bJfSU19gdt0eCAOrpWAkinA@mail.gmail.com>
     [not found] ` <YyTXIUjq9tmFPTDi@linutronix.de>
     [not found]   ` <CAAxUTH4xawCFpnwpRkcaZ5fdzMEbZZmPOyVDoqdMrPrf+G64dg@mail.gmail.com>
     [not found]     ` <YzLZIX+Pi6lyIr1f@linutronix.de>
2022-10-05  8:43       ` [PATCH] ARM: fix function graph tracer and unwinder dependencies Sebastian Andrzej Siewior
2022-10-05 16:43         ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).