compaction.h 7.4 KB
Newer Older
1 2 3 4 5 6 7
#undef TRACE_SYSTEM
#define TRACE_SYSTEM compaction

#if !defined(_TRACE_COMPACTION_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_COMPACTION_H

#include <linux/types.h>
8
#include <linux/list.h>
9
#include <linux/tracepoint.h>
10
#include <trace/events/gfpflags.h>
11

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#define COMPACTION_STATUS					\
	EM( COMPACT_DEFERRED,		"deferred")		\
	EM( COMPACT_SKIPPED,		"skipped")		\
	EM( COMPACT_CONTINUE,		"continue")		\
	EM( COMPACT_PARTIAL,		"partial")		\
	EM( COMPACT_COMPLETE,		"complete")		\
	EM( COMPACT_NO_SUITABLE_PAGE,	"no_suitable_page")	\
	EMe(COMPACT_NOT_SUITABLE_ZONE,	"not_suitable_zone")

/*
 * First define the enums in the above macros to be exported to userspace
 * via TRACE_DEFINE_ENUM().
 */
#undef EM
#undef EMe
#define EM(a, b)	TRACE_DEFINE_ENUM(a);
#define EMe(a, b)	TRACE_DEFINE_ENUM(a);

COMPACTION_STATUS

/*
 * Now redefine the EM() and EMe() macros to map the enums to the strings
 * that will be printed in the output.
 */
#undef EM
#undef EMe
#define EM(a, b)	{a, b},
#define EMe(a, b)	{a, b}

41 42
DECLARE_EVENT_CLASS(mm_compaction_isolate_template,

43 44 45 46
	TP_PROTO(
		unsigned long start_pfn,
		unsigned long end_pfn,
		unsigned long nr_scanned,
47 48
		unsigned long nr_taken),

49
	TP_ARGS(start_pfn, end_pfn, nr_scanned, nr_taken),
50 51

	TP_STRUCT__entry(
52 53
		__field(unsigned long, start_pfn)
		__field(unsigned long, end_pfn)
54 55 56 57 58
		__field(unsigned long, nr_scanned)
		__field(unsigned long, nr_taken)
	),

	TP_fast_assign(
59 60
		__entry->start_pfn = start_pfn;
		__entry->end_pfn = end_pfn;
61 62 63 64
		__entry->nr_scanned = nr_scanned;
		__entry->nr_taken = nr_taken;
	),

65 66 67
	TP_printk("range=(0x%lx ~ 0x%lx) nr_scanned=%lu nr_taken=%lu",
		__entry->start_pfn,
		__entry->end_pfn,
68 69 70 71 72 73
		__entry->nr_scanned,
		__entry->nr_taken)
);

DEFINE_EVENT(mm_compaction_isolate_template, mm_compaction_isolate_migratepages,

74 75 76 77
	TP_PROTO(
		unsigned long start_pfn,
		unsigned long end_pfn,
		unsigned long nr_scanned,
78 79
		unsigned long nr_taken),

80
	TP_ARGS(start_pfn, end_pfn, nr_scanned, nr_taken)
81 82 83
);

DEFINE_EVENT(mm_compaction_isolate_template, mm_compaction_isolate_freepages,
84 85 86 87 88

	TP_PROTO(
		unsigned long start_pfn,
		unsigned long end_pfn,
		unsigned long nr_scanned,
89 90
		unsigned long nr_taken),

91
	TP_ARGS(start_pfn, end_pfn, nr_scanned, nr_taken)
92 93 94 95
);

TRACE_EVENT(mm_compaction_migratepages,

96 97 98
	TP_PROTO(unsigned long nr_all,
		int migrate_rc,
		struct list_head *migratepages),
99

100
	TP_ARGS(nr_all, migrate_rc, migratepages),
101 102 103 104 105 106 107

	TP_STRUCT__entry(
		__field(unsigned long, nr_migrated)
		__field(unsigned long, nr_failed)
	),

	TP_fast_assign(
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
		unsigned long nr_failed = 0;
		struct list_head *page_lru;

		/*
		 * migrate_pages() returns either a non-negative number
		 * with the number of pages that failed migration, or an
		 * error code, in which case we need to count the remaining
		 * pages manually
		 */
		if (migrate_rc >= 0)
			nr_failed = migrate_rc;
		else
			list_for_each(page_lru, migratepages)
				nr_failed++;

		__entry->nr_migrated = nr_all - nr_failed;
124 125 126 127 128 129 130 131
		__entry->nr_failed = nr_failed;
	),

	TP_printk("nr_migrated=%lu nr_failed=%lu",
		__entry->nr_migrated,
		__entry->nr_failed)
);

132
TRACE_EVENT(mm_compaction_begin,
133 134
	TP_PROTO(unsigned long zone_start, unsigned long migrate_pfn,
		unsigned long free_pfn, unsigned long zone_end, bool sync),
135

136
	TP_ARGS(zone_start, migrate_pfn, free_pfn, zone_end, sync),
137 138 139

	TP_STRUCT__entry(
		__field(unsigned long, zone_start)
140 141
		__field(unsigned long, migrate_pfn)
		__field(unsigned long, free_pfn)
142
		__field(unsigned long, zone_end)
143
		__field(bool, sync)
144 145 146 147
	),

	TP_fast_assign(
		__entry->zone_start = zone_start;
148 149
		__entry->migrate_pfn = migrate_pfn;
		__entry->free_pfn = free_pfn;
150
		__entry->zone_end = zone_end;
151
		__entry->sync = sync;
152 153
	),

154
	TP_printk("zone_start=0x%lx migrate_pfn=0x%lx free_pfn=0x%lx zone_end=0x%lx, mode=%s",
155
		__entry->zone_start,
156 157 158 159
		__entry->migrate_pfn,
		__entry->free_pfn,
		__entry->zone_end,
		__entry->sync ? "sync" : "async")
160 161 162
);

TRACE_EVENT(mm_compaction_end,
163 164 165
	TP_PROTO(unsigned long zone_start, unsigned long migrate_pfn,
		unsigned long free_pfn, unsigned long zone_end, bool sync,
		int status),
166

167
	TP_ARGS(zone_start, migrate_pfn, free_pfn, zone_end, sync, status),
168 169

	TP_STRUCT__entry(
170 171 172 173 174
		__field(unsigned long, zone_start)
		__field(unsigned long, migrate_pfn)
		__field(unsigned long, free_pfn)
		__field(unsigned long, zone_end)
		__field(bool, sync)
175 176 177 178
		__field(int, status)
	),

	TP_fast_assign(
179 180 181 182 183
		__entry->zone_start = zone_start;
		__entry->migrate_pfn = migrate_pfn;
		__entry->free_pfn = free_pfn;
		__entry->zone_end = zone_end;
		__entry->sync = sync;
184 185 186
		__entry->status = status;
	),

187 188 189 190 191 192
	TP_printk("zone_start=0x%lx migrate_pfn=0x%lx free_pfn=0x%lx zone_end=0x%lx, mode=%s status=%s",
		__entry->zone_start,
		__entry->migrate_pfn,
		__entry->free_pfn,
		__entry->zone_end,
		__entry->sync ? "sync" : "async",
193
		__print_symbolic(__entry->status, COMPACTION_STATUS))
194
);
195

196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
TRACE_EVENT(mm_compaction_try_to_compact_pages,

	TP_PROTO(
		int order,
		gfp_t gfp_mask,
		enum migrate_mode mode),

	TP_ARGS(order, gfp_mask, mode),

	TP_STRUCT__entry(
		__field(int, order)
		__field(gfp_t, gfp_mask)
		__field(enum migrate_mode, mode)
	),

	TP_fast_assign(
		__entry->order = order;
		__entry->gfp_mask = gfp_mask;
		__entry->mode = mode;
	),

	TP_printk("order=%d gfp_mask=0x%x mode=%d",
		__entry->order,
		__entry->gfp_mask,
		(int)__entry->mode)
);

DECLARE_EVENT_CLASS(mm_compaction_suitable_template,

	TP_PROTO(struct zone *zone,
		int order,
		int ret),

	TP_ARGS(zone, order, ret),

	TP_STRUCT__entry(
		__field(int, nid)
		__field(char *, name)
		__field(int, order)
		__field(int, ret)
	),

	TP_fast_assign(
		__entry->nid = zone_to_nid(zone);
		__entry->name = (char *)zone->name;
		__entry->order = order;
		__entry->ret = ret;
	),

	TP_printk("node=%d zone=%-8s order=%d ret=%s",
		__entry->nid,
		__entry->name,
		__entry->order,
249
		__print_symbolic(__entry->ret, COMPACTION_STATUS))
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
);

DEFINE_EVENT(mm_compaction_suitable_template, mm_compaction_finished,

	TP_PROTO(struct zone *zone,
		int order,
		int ret),

	TP_ARGS(zone, order, ret)
);

DEFINE_EVENT(mm_compaction_suitable_template, mm_compaction_suitable,

	TP_PROTO(struct zone *zone,
		int order,
		int ret),

	TP_ARGS(zone, order, ret)
);

270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
#ifdef CONFIG_COMPACTION
DECLARE_EVENT_CLASS(mm_compaction_defer_template,

	TP_PROTO(struct zone *zone, int order),

	TP_ARGS(zone, order),

	TP_STRUCT__entry(
		__field(int, nid)
		__field(char *, name)
		__field(int, order)
		__field(unsigned int, considered)
		__field(unsigned int, defer_shift)
		__field(int, order_failed)
	),

	TP_fast_assign(
		__entry->nid = zone_to_nid(zone);
		__entry->name = (char *)zone->name;
		__entry->order = order;
		__entry->considered = zone->compact_considered;
		__entry->defer_shift = zone->compact_defer_shift;
		__entry->order_failed = zone->compact_order_failed;
	),

	TP_printk("node=%d zone=%-8s order=%d order_failed=%d consider=%u limit=%lu",
		__entry->nid,
		__entry->name,
		__entry->order,
		__entry->order_failed,
		__entry->considered,
		1UL << __entry->defer_shift)
);

DEFINE_EVENT(mm_compaction_defer_template, mm_compaction_deferred,

	TP_PROTO(struct zone *zone, int order),

	TP_ARGS(zone, order)
);

DEFINE_EVENT(mm_compaction_defer_template, mm_compaction_defer_compaction,

	TP_PROTO(struct zone *zone, int order),

	TP_ARGS(zone, order)
);

DEFINE_EVENT(mm_compaction_defer_template, mm_compaction_defer_reset,

	TP_PROTO(struct zone *zone, int order),

	TP_ARGS(zone, order)
);
#endif

326 327 328 329
#endif /* _TRACE_COMPACTION_H */

/* This part must be outside protection */
#include <trace/define_trace.h>