#undef TRACE_SYSTEM #define TRACE_SYSTEM mce #if !defined(_TRACE_MCE_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_MCE_H #include #include #include TRACE_EVENT(mce_record, TP_PROTO(struct mce *m), TP_ARGS(m), TP_STRUCT__entry( __field( u64, mcgcap ) __field( u64, mcgstatus ) __field( u64, status ) __field( u64, addr ) __field( u64, misc ) __field( u64, synd ) __field( u64, ipid ) __field( u64, ip ) __field( u64, tsc ) __field( u64, walltime ) __field( u32, cpu ) __field( u32, cpuid ) __field( u32, apicid ) __field( u32, socketid ) __field( u8, cs ) __field( u8, bank ) __field( u8, cpuvendor ) ), TP_fast_assign( __entry->mcgcap = m->mcgcap; __entry->mcgstatus = m->mcgstatus; __entry->status = m->status; __entry->addr = m->addr; __entry->misc = m->misc; __entry->synd = m->synd; __entry->ipid = m->ipid; __entry->ip = m->ip; __entry->tsc = m->tsc; __entry->walltime = m->time; __entry->cpu = m->extcpu; __entry->cpuid = m->cpuid; __entry->apicid = m->apicid; __entry->socketid = m->socketid; __entry->cs = m->cs; __entry->bank = m->bank; __entry->cpuvendor = m->cpuvendor; ), 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", __entry->cpu, __entry->mcgcap, __entry->mcgstatus, __entry->bank, __entry->status, __entry->ipid, __entry->addr, __entry->misc, __entry->synd, __entry->cs, __entry->ip, __entry->tsc, __entry->cpuvendor, __entry->cpuid, __entry->walltime, __entry->socketid, __entry->apicid) ); #endif /* _TRACE_MCE_H */ /* This part must be outside protection */ #include it/tree/?h=nds-private-remove&id=bdda9dd67445707a39ebb6d2be84dfb89ef0dea1'>treecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2016-12-13 14:26:28 +1000
committerDave Airlie <airlied@redhat.com>2016-12-13 14:26:28 +1000
commitbdda9dd67445707a39ebb6d2be84dfb89ef0dea1 (patch)
tree32b8e8a84bfcff9bf2feea81754da91bd1dc2a23
parent8a5c61f4ffa56cf85e21bfa5777440d4a736ef7d (diff)
parent8c31f6034b24601721daeb012793641fac079e2e (diff)
Merge tag 'drm/panel/for-4.10-rc1' of git://anongit.freedesktop.org/tegra/linux into drm-next
drm/panel: Changes for v4.10-rc1 This adds support for a couple more panels to the simple-panel driver. There is also a fix for a long-standing bug, but it's not critical since no code will currently trigger it. * tag 'drm/panel/for-4.10-rc1' of git://anongit.freedesktop.org/tegra/linux: drm/panel: simple: Add support for AUO G185HAN01 drm/panel: simple: Add support for AUO G133HAN01 drm/panel: simple: Add more properties to Innolux G121I1-L01 drm/panel: simple: Add bits-per-component for Sharp LQ123P1JX31 drm/panel: simple: Check against num_timings when setting preferred for timing drm/panel: Add support for Chunghwa CLAA070WP03XG panel drm/panel: simple: Add NVD9128 as a simple panel drm/panel: simple: Add support for AUO T215HVN01 drm/panel: simple: Add support for Sharp LQ150X1LG11 panels dt-bindings: display: Add Sharp LQ150X1LG11 panel binding