]> git.ipfire.org Git - thirdparty/linux.git/blob - include/trace/events/mce.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/linux.git] / include / trace / events / mce.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #undef TRACE_SYSTEM
3 #define TRACE_SYSTEM mce
4
5 #if !defined(_TRACE_MCE_H) || defined(TRACE_HEADER_MULTI_READ)
6 #define _TRACE_MCE_H
7
8 #include <linux/ktime.h>
9 #include <linux/tracepoint.h>
10 #include <asm/mce.h>
11
12 TRACE_EVENT(mce_record,
13
14 TP_PROTO(struct mce *m),
15
16 TP_ARGS(m),
17
18 TP_STRUCT__entry(
19 __field( u64, mcgcap )
20 __field( u64, mcgstatus )
21 __field( u64, status )
22 __field( u64, addr )
23 __field( u64, misc )
24 __field( u64, synd )
25 __field( u64, ipid )
26 __field( u64, ip )
27 __field( u64, tsc )
28 __field( u64, walltime )
29 __field( u32, cpu )
30 __field( u32, cpuid )
31 __field( u32, apicid )
32 __field( u32, socketid )
33 __field( u8, cs )
34 __field( u8, bank )
35 __field( u8, cpuvendor )
36 ),
37
38 TP_fast_assign(
39 __entry->mcgcap = m->mcgcap;
40 __entry->mcgstatus = m->mcgstatus;
41 __entry->status = m->status;
42 __entry->addr = m->addr;
43 __entry->misc = m->misc;
44 __entry->synd = m->synd;
45 __entry->ipid = m->ipid;
46 __entry->ip = m->ip;
47 __entry->tsc = m->tsc;
48 __entry->walltime = m->time;
49 __entry->cpu = m->extcpu;
50 __entry->cpuid = m->cpuid;
51 __entry->apicid = m->apicid;
52 __entry->socketid = m->socketid;
53 __entry->cs = m->cs;
54 __entry->bank = m->bank;
55 __entry->cpuvendor = m->cpuvendor;
56 ),
57
58 TP_printk("CPU: %d, MCGc/s: %llx/%llx, MC%d: %016Lx, IPID: %016Lx, ADDR/MISC/SYND: %016Lx/%016Lx/%016Lx, RIP: %02x:<%016Lx>, TSC: %llx, PROCESSOR: %u:%x, TIME: %llu, SOCKET: %u, APIC: %x",
59 __entry->cpu,
60 __entry->mcgcap, __entry->mcgstatus,
61 __entry->bank, __entry->status,
62 __entry->ipid,
63 __entry->addr, __entry->misc, __entry->synd,
64 __entry->cs, __entry->ip,
65 __entry->tsc,
66 __entry->cpuvendor, __entry->cpuid,
67 __entry->walltime,
68 __entry->socketid,
69 __entry->apicid)
70 );
71
72 #endif /* _TRACE_MCE_H */
73
74 /* This part must be outside protection */
75 #include <trace/define_trace.h>