• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #undef TRACE_SYSTEM
3 #define TRACE_SYSTEM debug
4 
5 #define TRACE_INCLUDE_PATH trace/hooks
6 
7 #if !defined(_TRACE_HOOK_DEBUG_H) || defined(TRACE_HEADER_MULTI_READ)
8 #define _TRACE_HOOK_DEBUG_H
9 
10 #include <linux/tracepoint.h>
11 #include <trace/hooks/vendor_hooks.h>
12 
13 #if defined(CONFIG_TRACEPOINTS) && defined(CONFIG_ANDROID_VENDOR_HOOKS)
14 #ifdef __GENKSYMS__
15 struct pt_regs;
16 #else
17 /* struct pt_regs */
18 #include <asm/ptrace.h>
19 #endif /* __GENKSYMS__ */
20 
21 DECLARE_HOOK(android_vh_ipi_stop,
22 	TP_PROTO(struct pt_regs *regs),
23 	TP_ARGS(regs))
24 #else
25 #define trace_android_vh_ipi_stop(regs)
26 #define trace_android_vh_ipi_stop_rcuidle(regs)
27 #endif
28 
29 #endif /* _TRACE_HOOK_DEBUG_H */
30 /* This part must be outside protection */
31 #include <trace/define_trace.h>
32