Commit | Line | Data |
---|---|---|
b7cdc182 | 1 | /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) |
9f36eaed | 2 | * |
b87700e3 AG |
3 | * probes/lttng-probe-compaction.c |
4 | * | |
5 | * LTTng compaction probes. | |
6 | * | |
7 | * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
8 | * Copyright (C) 2012 Mentor Graphics Corp. | |
b87700e3 AG |
9 | */ |
10 | ||
11 | #include <linux/module.h> | |
2df37e95 | 12 | #include <lttng/tracer.h> |
f9208dc0 MJ |
13 | #include <lttng/kernel-version.h> |
14 | ||
15 | #if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,18,0)) | |
16 | #include "../mm/internal.h" | |
17 | #endif | |
b87700e3 AG |
18 | |
19 | /* | |
20 | * Create the tracepoint static inlines from the kernel to validate that our | |
21 | * trace event macros match the kernel we run on. | |
22 | */ | |
23 | #include <trace/events/compaction.h> | |
24 | ||
25 | /* | |
26 | * Create LTTng tracepoint probes. | |
27 | */ | |
28 | #define LTTNG_PACKAGE_BUILD | |
29 | #define CREATE_TRACE_POINTS | |
4f47ccf0 | 30 | #define TRACE_INCLUDE_PATH instrumentation/events |
b87700e3 | 31 | |
4f47ccf0 | 32 | #include <instrumentation/events/compaction.h> |
b87700e3 AG |
33 | |
34 | MODULE_LICENSE("GPL and additional rights"); | |
35 | MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>"); | |
36 | MODULE_DESCRIPTION("LTTng compaction probes"); | |
13ab8b0a MD |
37 | MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "." |
38 | __stringify(LTTNG_MODULES_MINOR_VERSION) "." | |
39 | __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION) | |
40 | LTTNG_MODULES_EXTRAVERSION); |