Fix: mm_compaction_migratepages changed in linux 6.9-rc1
[lttng-modules.git] / include / instrumentation / events / compaction.h
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: GPL-2.0-only */
b87700e3
AG
2#undef TRACE_SYSTEM
3#define TRACE_SYSTEM compaction
4
3bc29f0a
MD
5#if !defined(LTTNG_TRACE_COMPACTION_H) || defined(TRACE_HEADER_MULTI_READ)
6#define LTTNG_TRACE_COMPACTION_H
b87700e3 7
3b4aafcb 8#include <lttng/tracepoint-event.h>
b87700e3 9#include <linux/types.h>
5f4c791e 10#include <lttng/kernel-version.h>
b87700e3 11
9bbf98da 12LTTNG_TRACEPOINT_EVENT_CLASS(compaction_isolate_template,
a57f014e
MD
13
14 TP_PROTO(unsigned long start_pfn,
15 unsigned long end_pfn,
16 unsigned long nr_scanned,
17 unsigned long nr_taken),
18
19 TP_ARGS(start_pfn, end_pfn, nr_scanned, nr_taken),
20
f127e61e
MD
21 TP_FIELDS(
22 ctf_integer(unsigned long, start_pfn, start_pfn)
23 ctf_integer(unsigned long, end_pfn, end_pfn)
24 ctf_integer(unsigned long, nr_scanned, nr_scanned)
25 ctf_integer(unsigned long, nr_taken, nr_taken)
26 )
a57f014e
MD
27)
28
c3857419
MD
29LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(compaction_isolate_template,
30
31 mm_compaction_isolate_migratepages,
32
33 compaction_isolate_migratepages,
a57f014e
MD
34
35 TP_PROTO(unsigned long start_pfn,
36 unsigned long end_pfn,
37 unsigned long nr_scanned,
38 unsigned long nr_taken),
39
40 TP_ARGS(start_pfn, end_pfn, nr_scanned, nr_taken)
41)
42
c3857419
MD
43LTTNG_TRACEPOINT_EVENT_INSTANCE_MAP(compaction_isolate_template,
44
45 mm_compaction_isolate_freepages,
46
47 compaction_isolate_freepages,
a57f014e
MD
48
49 TP_PROTO(unsigned long start_pfn,
50 unsigned long end_pfn,
51 unsigned long nr_scanned,
52 unsigned long nr_taken),
53
54 TP_ARGS(start_pfn, end_pfn, nr_scanned, nr_taken)
55)
56
f4a6415f
KS
57#if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(6,9,0))
58LTTNG_TRACEPOINT_EVENT_MAP(mm_compaction_migratepages,
59
60 compaction_migratepages,
61
62 TP_PROTO(unsigned int nr_migratepages,
63 unsigned int nr_succeeded),
64
65 TP_ARGS(nr_migratepages, nr_succeeded),
66
67 TP_FIELDS(
68 ctf_integer(unsigned long, nr_migrated, nr_succeeded)
69 ctf_integer(unsigned long, nr_failed, nr_migratepages - nr_succeeded)
70 )
71)
72#elif (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,18,0) || \
a9d49ac6 73 LTTNG_RHEL_KERNEL_RANGE(5,14,0,163,0,0, 5,15,0,0,0,0))
f9208dc0
MJ
74LTTNG_TRACEPOINT_EVENT_MAP(mm_compaction_migratepages,
75
76 compaction_migratepages,
77
78 TP_PROTO(struct compact_control *cc,
79 unsigned int nr_succeeded),
80
81 TP_ARGS(cc, nr_succeeded),
82
83 TP_FIELDS(
84 ctf_integer(unsigned long, nr_migrated, nr_succeeded)
85 ctf_integer(unsigned long, nr_failed, cc->nr_migratepages - nr_succeeded)
86 )
87)
88#elif (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,17,0))
c312bda0
MD
89LTTNG_TRACEPOINT_EVENT_MAP(mm_compaction_migratepages,
90
91 compaction_migratepages,
a9b832ac
MJ
92
93 TP_PROTO(unsigned long nr_all,
94 unsigned int nr_succeeded),
95
96 TP_ARGS(nr_all, nr_succeeded),
97
98 TP_FIELDS(
99 ctf_integer(unsigned long, nr_migrated, nr_succeeded)
100 ctf_integer(unsigned long, nr_failed, nr_all - nr_succeeded)
101 )
102)
441e0d16 103#else
f127e61e 104LTTNG_TRACEPOINT_EVENT_CODE_MAP(mm_compaction_migratepages,
9bbf98da
MD
105
106 compaction_migratepages,
00073447
MD
107
108 TP_PROTO(unsigned long nr_all,
109 int migrate_rc,
110 struct list_head *migratepages),
111
112 TP_ARGS(nr_all, migrate_rc, migratepages),
113
f127e61e
MD
114 TP_locvar(
115 unsigned long nr_failed;
00073447
MD
116 ),
117
265822ae 118 TP_code_pre(
f127e61e
MD
119 tp_locvar->nr_failed = 0;
120
121 {
122 struct list_head *page_lru;
123
124 if (migrate_rc >= 0)
125 tp_locvar->nr_failed = migrate_rc;
126 else
127 list_for_each(page_lru, migratepages)
128 tp_locvar->nr_failed++;
129 }
00073447
MD
130 ),
131
f127e61e
MD
132 TP_FIELDS(
133 ctf_integer(unsigned long, nr_migrated, nr_all - tp_locvar->nr_failed)
134 ctf_integer(unsigned long, nr_failed, tp_locvar->nr_failed)
265822ae
MD
135 ),
136
137 TP_code_post()
00073447 138)
5f4c791e 139#endif /* #else #if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,16,0)) */
b87700e3 140
3bc29f0a 141#endif /* LTTNG_TRACE_COMPACTION_H */
b87700e3
AG
142
143/* This part must be outside protection */
3b4aafcb 144#include <lttng/define_trace.h>
This page took 0.062602 seconds and 4 git commands to generate.