target/cxgbit: Use T6 specific macros to get ETH/IP hdr len
[linux/fpc-iii.git] / arch / arm / include / asm / ftrace.h
blob22b73112b75f2070e440068184f9655cff781afe
1 #ifndef _ASM_ARM_FTRACE
2 #define _ASM_ARM_FTRACE
4 #ifdef CONFIG_FUNCTION_TRACER
5 #define MCOUNT_ADDR ((unsigned long)(__gnu_mcount_nc))
6 #define MCOUNT_INSN_SIZE 4 /* sizeof mcount call */
8 #ifndef __ASSEMBLY__
9 extern void mcount(void);
10 extern void __gnu_mcount_nc(void);
12 #ifdef CONFIG_DYNAMIC_FTRACE
13 struct dyn_arch_ftrace {
14 #ifdef CONFIG_OLD_MCOUNT
15 bool old_mcount;
16 #endif
19 static inline unsigned long ftrace_call_adjust(unsigned long addr)
21 /* With Thumb-2, the recorded addresses have the lsb set */
22 return addr & ~1;
25 extern void ftrace_caller_old(void);
26 extern void ftrace_call_old(void);
27 #endif
29 #endif
31 #endif
33 #ifndef __ASSEMBLY__
35 #if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND)
37 * return_address uses walk_stackframe to do it's work. If both
38 * CONFIG_FRAME_POINTER=y and CONFIG_ARM_UNWIND=y walk_stackframe uses unwind
39 * information. For this to work in the function tracer many functions would
40 * have to be marked with __notrace. So for now just depend on
41 * !CONFIG_ARM_UNWIND.
44 void *return_address(unsigned int);
46 #else
48 static inline void *return_address(unsigned int level)
50 return NULL;
53 #endif
55 #define ftrace_return_address(n) return_address(n)
57 #define ARCH_HAS_SYSCALL_MATCH_SYM_NAME
59 static inline bool arch_syscall_match_sym_name(const char *sym,
60 const char *name)
62 if (!strcmp(sym, "sys_mmap2"))
63 sym = "sys_mmap_pgoff";
64 else if (!strcmp(sym, "sys_statfs64_wrapper"))
65 sym = "sys_statfs64";
66 else if (!strcmp(sym, "sys_fstatfs64_wrapper"))
67 sym = "sys_fstatfs64";
68 else if (!strcmp(sym, "sys_arm_fadvise64_64"))
69 sym = "sys_fadvise64_64";
71 /* Ignore case since sym may start with "SyS" instead of "sys" */
72 return !strcasecmp(sym, name);
75 #endif /* ifndef __ASSEMBLY__ */
77 #endif /* _ASM_ARM_FTRACE */