]>
git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - include/trace/events/rseq.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
3 #define TRACE_SYSTEM rseq
5 #if !defined(_TRACE_RSEQ_H) || defined(TRACE_HEADER_MULTI_READ)
8 #include <linux/tracepoint.h>
9 #include <linux/types.h>
11 TRACE_EVENT(rseq_update
,
13 TP_PROTO(struct task_struct
*t
),
22 __entry
->cpu_id
= raw_smp_processor_id();
25 TP_printk("cpu_id=%d", __entry
->cpu_id
)
28 TRACE_EVENT(rseq_ip_fixup
,
30 TP_PROTO(unsigned long regs_ip
, unsigned long start_ip
,
31 unsigned long post_commit_offset
, unsigned long abort_ip
),
33 TP_ARGS(regs_ip
, start_ip
, post_commit_offset
, abort_ip
),
36 __field(unsigned long, regs_ip
)
37 __field(unsigned long, start_ip
)
38 __field(unsigned long, post_commit_offset
)
39 __field(unsigned long, abort_ip
)
43 __entry
->regs_ip
= regs_ip
;
44 __entry
->start_ip
= start_ip
;
45 __entry
->post_commit_offset
= post_commit_offset
;
46 __entry
->abort_ip
= abort_ip
;
49 TP_printk("regs_ip=0x%lx start_ip=0x%lx post_commit_offset=%lu abort_ip=0x%lx",
50 __entry
->regs_ip
, __entry
->start_ip
,
51 __entry
->post_commit_offset
, __entry
->abort_ip
)
54 #endif /* _TRACE_SOCK_H */
56 /* This part must be outside protection */
57 #include <trace/define_trace.h>