1 /* SPDX-License-Identifier: GPL-2.0 */
3 #define TRACE_SYSTEM intel_ifs
5 #if !defined(_TRACE_IFS_H) || defined(TRACE_HEADER_MULTI_READ)
8 #include <linux/ktime.h>
9 #include <linux/tracepoint.h>
11 TRACE_EVENT(ifs_status,
13 TP_PROTO(int cpu, int start, int stop, u64 status),
15 TP_ARGS(cpu, start, stop, status),
18 __field( u64, status )
26 __entry->start = start;
28 __entry->status = status;
31 TP_printk("cpu: %d, start: %.4x, stop: %.4x, status: %.16llx",
38 #endif /* _TRACE_IFS_H */
40 /* This part must be outside protection */
41 #include <trace/define_trace.h>