/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_SPARC64_FTRACE #define _ASM_SPARC64_FTRACE #ifdef CONFIG_MCOUNT #define MCOUNT_ADDR ((unsigned long)(_mcount)) #define MCOUNT_INSN_SIZE 4 /* sizeof mcount call */ #ifndef __ASSEMBLY__ void _mcount(void); #endif #endif /* CONFIG_MCOUNT */ #if defined(CONFIG_SPARC64) && !defined(CC_USE_FENTRY) #define HAVE_FUNCTION_GRAPH_FP_TEST #endif #ifdef CONFIG_DYNAMIC_FTRACE /* reloction of mcount call site is the same as the address */
static inline unsigned long ftrace_call_adjust(unsigned long addr) { return addr; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Abhishek Sagar | 32 | 33.33% | 1 | 14.29% |
David S. Miller | 26 | 27.08% | 1 | 14.29% |
Josh Poimboeuf | 18 | 18.75% | 1 | 14.29% |
Sam Ravnborg | 17 | 17.71% | 1 | 14.29% |
Ingo Molnar | 1 | 1.04% | 1 | 14.29% |
Minfei Huang | 1 | 1.04% | 1 | 14.29% |
Greg Kroah-Hartman | 1 | 1.04% | 1 | 14.29% |
Total | 96 | 100.00% | 7 | 100.00% |