mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 17:02:46 -04:00
25 lines
420 B
C
25 lines
420 B
C
#ifndef _ASM_S390_FTRACE_H
|
|
#define _ASM_S390_FTRACE_H
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
extern void _mcount(void);
|
|
extern char ftrace_graph_caller_end;
|
|
|
|
struct dyn_arch_ftrace { };
|
|
|
|
#define MCOUNT_ADDR ((long)_mcount)
|
|
|
|
|
|
static inline unsigned long ftrace_call_adjust(unsigned long addr)
|
|
{
|
|
return addr;
|
|
}
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#define MCOUNT_INSN_SIZE 18
|
|
|
|
#define ARCH_SUPPORTS_FTRACE_OPS 1
|
|
|
|
#endif /* _ASM_S390_FTRACE_H */
|