#undef TRACE_SYSTEM #define TRACE_SYSTEM nmi #if !defined(_TRACE_NMI_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_NMI_H #include #include TRACE_EVENT(nmi_handler, TP_PROTO(void *handler, s64 delta_ns, int handled), TP_ARGS(handler, delta_ns, handled), TP_STRUCT__entry( __field( void *, handler ) __field( s64, delta_ns) __field( int, handled ) ), TP_fast_assign( __entry->handler = handler; __entry->delta_ns = delta_ns; __entry->handled = handled; ), TP_printk("%ps() delta_ns: %lld handled: %d", __entry->handler, __entry->delta_ns, __entry->handled) ); #endif /* _TRACE_NMI_H */ /* This part ust be outside protection */ #include t.cgi/'>cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-06-03 16:12:35 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2016-06-03 16:12:35 -0700
commit8c52b6dcdd1994ad0d2672e43c8d975d5c8195c3 (patch)
treebcf21423c13b62861e9f856e3d1b1bdf196afa1b /Documentation/devicetree
parent2c221325635ed09a6eea10a362d8514d5943ad7d (diff)
parent2eec3707a33fbf1c2e0a88ffc9fc0e465c2a59fd (diff)
Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull irq fixes from Thomas Gleixner: - a few simple fixes for fallout from the recent gic-v3 changes - a workaround for a Cavium thunderX erratum - a bugfix for the pic32 irqchip to make external interrupts work proper - a missing return value in the generic IPI management code * 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: irqchip/irq-pic32-evic: Fix bug with external interrupts. irqchip/gicv3-its: numa: Enable workaround for Cavium thunderx erratum 23144 irqchip/gic-v3: Fix quiescence check in gic_enable_redist irqchip/gic-v3: Fix copy+paste mistakes in defines irqchip/gic-v3: Fix ICC_SGI1R_EL1.INTID decoding mask genirq: Fix missing return value in irq_destroy_ipi()
Diffstat (limited to 'Documentation/devicetree')