/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_MICROBLAZE_FTRACE #define _ASM_MICROBLAZE_FTRACE #ifdef CONFIG_FUNCTION_TRACER #define MCOUNT_ADDR ((unsigned long)(_mcount)) #define MCOUNT_INSN_SIZE 8 /* sizeof mcount call */ #ifndef __ASSEMBLY__ extern void _mcount(void); extern void ftrace_call_graph(void); #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 |
Michal Simek | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Michal Simek | 68 | 97.14% | 2 | 50.00% |
Minfei Huang | 1 | 1.43% | 1 | 25.00% |
Greg Kroah-Hartman | 1 | 1.43% | 1 | 25.00% |
Total | 70 | 100.00% | 4 | 100.00% |