~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/trace/events/mce.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/trace/events/mce.h (Version linux-6.12-rc7) and /include/trace/events/mce.h (Version linux-4.10.17)


  1 /* SPDX-License-Identifier: GPL-2.0 */         << 
  2 #undef TRACE_SYSTEM                                 1 #undef TRACE_SYSTEM
  3 #define TRACE_SYSTEM mce                            2 #define TRACE_SYSTEM mce
  4                                                     3 
  5 #if !defined(_TRACE_MCE_H) || defined(TRACE_HE      4 #if !defined(_TRACE_MCE_H) || defined(TRACE_HEADER_MULTI_READ)
  6 #define _TRACE_MCE_H                                5 #define _TRACE_MCE_H
  7                                                     6 
  8 #include <linux/ktime.h>                            7 #include <linux/ktime.h>
  9 #include <linux/tracepoint.h>                       8 #include <linux/tracepoint.h>
 10 #include <asm/mce.h>                                9 #include <asm/mce.h>
 11                                                    10 
 12 /*                                             << 
 13  * MCE Event Record.                           << 
 14  *                                             << 
 15  * Only very relevant and transient informatio << 
 16  * gathered from a system by any other means o << 
 17  * acquired arduously should be added to this  << 
 18  */                                            << 
 19                                                << 
 20 TRACE_EVENT(mce_record,                            11 TRACE_EVENT(mce_record,
 21                                                    12 
 22         TP_PROTO(struct mce *m),                   13         TP_PROTO(struct mce *m),
 23                                                    14 
 24         TP_ARGS(m),                                15         TP_ARGS(m),
 25                                                    16 
 26         TP_STRUCT__entry(                          17         TP_STRUCT__entry(
 27                 __field(        u64,               18                 __field(        u64,            mcgcap          )
 28                 __field(        u64,               19                 __field(        u64,            mcgstatus       )
 29                 __field(        u64,               20                 __field(        u64,            status          )
 30                 __field(        u64,               21                 __field(        u64,            addr            )
 31                 __field(        u64,               22                 __field(        u64,            misc            )
 32                 __field(        u64,               23                 __field(        u64,            synd            )
 33                 __field(        u64,               24                 __field(        u64,            ipid            )
 34                 __field(        u64,               25                 __field(        u64,            ip              )
 35                 __field(        u64,               26                 __field(        u64,            tsc             )
 36                 __field(        u64,           << 
 37                 __field(        u64,               27                 __field(        u64,            walltime        )
 38                 __field(        u32,               28                 __field(        u32,            cpu             )
 39                 __field(        u32,               29                 __field(        u32,            cpuid           )
 40                 __field(        u32,               30                 __field(        u32,            apicid          )
 41                 __field(        u32,               31                 __field(        u32,            socketid        )
 42                 __field(        u8,                32                 __field(        u8,             cs              )
 43                 __field(        u8,                33                 __field(        u8,             bank            )
 44                 __field(        u8,                34                 __field(        u8,             cpuvendor       )
 45                 __field(        u32,           << 
 46         ),                                         35         ),
 47                                                    36 
 48         TP_fast_assign(                            37         TP_fast_assign(
 49                 __entry->mcgcap         = m->m     38                 __entry->mcgcap         = m->mcgcap;
 50                 __entry->mcgstatus      = m->m     39                 __entry->mcgstatus      = m->mcgstatus;
 51                 __entry->status         = m->s     40                 __entry->status         = m->status;
 52                 __entry->addr           = m->a     41                 __entry->addr           = m->addr;
 53                 __entry->misc           = m->m     42                 __entry->misc           = m->misc;
 54                 __entry->synd           = m->s     43                 __entry->synd           = m->synd;
 55                 __entry->ipid           = m->i     44                 __entry->ipid           = m->ipid;
 56                 __entry->ip             = m->i     45                 __entry->ip             = m->ip;
 57                 __entry->tsc            = m->t     46                 __entry->tsc            = m->tsc;
 58                 __entry->ppin           = m->p << 
 59                 __entry->walltime       = m->t     47                 __entry->walltime       = m->time;
 60                 __entry->cpu            = m->e     48                 __entry->cpu            = m->extcpu;
 61                 __entry->cpuid          = m->c     49                 __entry->cpuid          = m->cpuid;
 62                 __entry->apicid         = m->a     50                 __entry->apicid         = m->apicid;
 63                 __entry->socketid       = m->s     51                 __entry->socketid       = m->socketid;
 64                 __entry->cs             = m->c     52                 __entry->cs             = m->cs;
 65                 __entry->bank           = m->b     53                 __entry->bank           = m->bank;
 66                 __entry->cpuvendor      = m->c     54                 __entry->cpuvendor      = m->cpuvendor;
 67                 __entry->microcode      = m->m << 
 68         ),                                         55         ),
 69                                                    56 
 70         TP_printk("CPU: %d, MCGc/s: %llx/%llx, !!  57         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",
 71                 __entry->cpu,                      58                 __entry->cpu,
 72                 __entry->mcgcap, __entry->mcgs     59                 __entry->mcgcap, __entry->mcgstatus,
 73                 __entry->bank, __entry->status     60                 __entry->bank, __entry->status,
 74                 __entry->ipid,                     61                 __entry->ipid,
 75                 __entry->addr,                 !!  62                 __entry->addr, __entry->misc, __entry->synd,
 76                 __entry->misc,                 << 
 77                 __entry->synd,                 << 
 78                 __entry->cs, __entry->ip,          63                 __entry->cs, __entry->ip,
 79                 __entry->tsc,                      64                 __entry->tsc,
 80                 __entry->ppin,                 !!  65                 __entry->cpuvendor, __entry->cpuid,
 81                 __entry->cpuvendor,            << 
 82                 __entry->cpuid,                << 
 83                 __entry->walltime,                 66                 __entry->walltime,
 84                 __entry->socketid,                 67                 __entry->socketid,
 85                 __entry->apicid,               !!  68                 __entry->apicid)
 86                 __entry->microcode)            << 
 87 );                                                 69 );
 88                                                    70 
 89 #endif /* _TRACE_MCE_H */                          71 #endif /* _TRACE_MCE_H */
 90                                                    72 
 91 /* This part must be outside protection */         73 /* This part must be outside protection */
 92 #include <trace/define_trace.h>                    74 #include <trace/define_trace.h>
 93                                                    75 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php