1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define TRACE_SYSTEM bpf_trace
5 #if !defined(_TRACE_BPF_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
7 #define _TRACE_BPF_TRACE_H
9 #include <linux/tracepoint.h>
11 TRACE_EVENT(bpf_trace_printk,
13 TP_PROTO(const char *bpf_string),
18 __string(bpf_string, bpf_string)
22 __assign_str(bpf_string, bpf_string);
25 TP_printk("%s", __get_str(bpf_string))
28 #endif /* _TRACE_BPF_TRACE_H */
30 #undef TRACE_INCLUDE_PATH
31 #define TRACE_INCLUDE_PATH .
32 #define TRACE_INCLUDE_FILE bpf_trace
34 #include <trace/define_trace.h>