mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-23 18:10:16 +07:00
7e5e26a3d8
Impact: build fix for non-ftrace architectures Not all archs implement ftrace, and therefore do not have an asm/ftrace.h. This patch corrects the problem. The ftrace_nmi_enter/exit now must be defined for all archs that implement dynamic ftrace. Currently, only x86 does. Signed-off-by: Steven Rostedt <srostedt@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
15 lines
267 B
C
15 lines
267 B
C
#ifndef _ASM_SPARC64_FTRACE
|
|
#define _ASM_SPARC64_FTRACE
|
|
|
|
#ifdef CONFIG_MCOUNT
|
|
#define MCOUNT_ADDR ((long)(_mcount))
|
|
#define MCOUNT_INSN_SIZE 4 /* sizeof mcount call */
|
|
|
|
#ifndef __ASSEMBLY__
|
|
extern void _mcount(void);
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif /* _ASM_SPARC64_FTRACE */
|