License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / include / trace / events / page_isolation.h
blobbf4c42e8d6a45bfa0fce9d1c96862c5f49591fb6
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #undef TRACE_SYSTEM
3 #define TRACE_SYSTEM page_isolation
5 #if !defined(_TRACE_PAGE_ISOLATION_H) || defined(TRACE_HEADER_MULTI_READ)
6 #define _TRACE_PAGE_ISOLATION_H
8 #include <linux/tracepoint.h>
10 TRACE_EVENT(test_pages_isolated,
12 TP_PROTO(
13 unsigned long start_pfn,
14 unsigned long end_pfn,
15 unsigned long fin_pfn),
17 TP_ARGS(start_pfn, end_pfn, fin_pfn),
19 TP_STRUCT__entry(
20 __field(unsigned long, start_pfn)
21 __field(unsigned long, end_pfn)
22 __field(unsigned long, fin_pfn)
25 TP_fast_assign(
26 __entry->start_pfn = start_pfn;
27 __entry->end_pfn = end_pfn;
28 __entry->fin_pfn = fin_pfn;
31 TP_printk("start_pfn=0x%lx end_pfn=0x%lx fin_pfn=0x%lx ret=%s",
32 __entry->start_pfn, __entry->end_pfn, __entry->fin_pfn,
33 __entry->end_pfn <= __entry->fin_pfn ? "success" : "fail")
36 #endif /* _TRACE_PAGE_ISOLATION_H */
38 /* This part must be outside protection */
39 #include <trace/define_trace.h>