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-ext4.c |
4 | * | |
5 | * LTTng ext4 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> | |
12 | #include <linux/fs.h> | |
13 | #include <../fs/ext4/ext4.h> | |
14 | #include <../fs/ext4/mballoc.h> | |
162774b4 | 15 | #include <../fs/ext4/ext4_extents.h> |
b87700e3 | 16 | #include <linux/dcache.h> |
156a3977 | 17 | #include <lttng-tracer.h> |
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/ext4.h> | |
24 | ||
156a3977 MD |
25 | #include <lttng-kernel-version.h> |
26 | #include <wrapper/tracepoint.h> | |
b87700e3 AG |
27 | |
28 | /* | |
29 | * Create LTTng tracepoint probes. | |
30 | */ | |
31 | #define LTTNG_PACKAGE_BUILD | |
32 | #define CREATE_TRACE_POINTS | |
156a3977 | 33 | #define TRACE_INCLUDE_PATH instrumentation/events/lttng-module |
b87700e3 | 34 | |
156a3977 | 35 | #include <instrumentation/events/lttng-module/ext4.h> |
b87700e3 AG |
36 | |
37 | MODULE_LICENSE("GPL and additional rights"); | |
38 | MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>"); | |
39 | MODULE_DESCRIPTION("LTTng ext4 probes"); | |
13ab8b0a MD |
40 | MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "." |
41 | __stringify(LTTNG_MODULES_MINOR_VERSION) "." | |
42 | __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION) | |
43 | LTTNG_MODULES_EXTRAVERSION); |