Commit 959b76a9 authored by Max Filippov's avatar Max Filippov
Browse files

xtensa: drop ARCH_WANT_FRAME_POINTERS



ARCH_WANT_FRAME_POINTERS was enabled in the xtensa Kconfig in the commit
8f371c75 ("xtensa: enable lockdep support"), but neither windowed
nor call0 xtensa ABI need frame pointers for stack tracing.
Drop ARCH_WANT_FRAME_POINTERS from the xtensa Kconfig.
Drop ftrace_return_address0 definition as the generic implementation is
correct.

Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
parent e6807b44
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -16,7 +16,6 @@ config XTENSA
	select ARCH_USE_MEMTEST
	select ARCH_USE_QUEUED_RWLOCKS
	select ARCH_USE_QUEUED_SPINLOCKS
	select ARCH_WANT_FRAME_POINTERS
	select ARCH_WANT_IPC_PARSE_VERSION
	select BUILDTIME_TABLE_SORT
	select CLONE_BACKWARDS
+0 −9
Original line number Diff line number Diff line
@@ -13,17 +13,8 @@
#include <asm/processor.h>

#ifndef __ASSEMBLY__
#define ftrace_return_address0 ({ unsigned long a0, a1; \
		__asm__ __volatile__ ( \
			"mov %0, a0\n" \
			"mov %1, a1\n" \
			: "=r"(a0), "=r"(a1)); \
		MAKE_PC_FROM_RA(a0, a1); })

#ifdef CONFIG_FRAME_POINTER
extern unsigned long return_address(unsigned level);
#define ftrace_return_address(n) return_address(n)
#endif
#endif /* __ASSEMBLY__ */

#ifdef CONFIG_FUNCTION_TRACER
+0 −4
Original line number Diff line number Diff line
@@ -237,8 +237,6 @@ EXPORT_SYMBOL_GPL(save_stack_trace);

#endif

#ifdef CONFIG_FRAME_POINTER

struct return_addr_data {
	unsigned long addr;
	unsigned skip;
@@ -271,5 +269,3 @@ unsigned long return_address(unsigned level)
	return r.addr;
}
EXPORT_SYMBOL(return_address);

#endif