Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / probes / lttng-probe-btrfs.c
1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
2 *
3 * probes/lttng-probe-btrfs.c
4 *
5 * LTTng btrfs probes.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Copyright (C) 2012 Mentor Graphics Corp.
9 */
10
11 #include <linux/module.h>
12 #include <linux/fs.h>
13 #include <../fs/btrfs/ctree.h>
14 #include <../fs/btrfs/transaction.h>
15 #include <../fs/btrfs/volumes.h>
16 #include <linux/dcache.h>
17 #include <lttng-tracer.h>
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/btrfs.h>
24
25 /*
26 * Create LTTng tracepoint probes.
27 */
28 #define LTTNG_PACKAGE_BUILD
29 #define CREATE_TRACE_POINTS
30 #define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
31
32 #include <instrumentation/events/lttng-module/btrfs.h>
33
34 MODULE_LICENSE("GPL and additional rights");
35 MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>");
36 MODULE_DESCRIPTION("LTTng btrfs probes");
37 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
38 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
39 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
40 LTTNG_MODULES_EXTRAVERSION);
This page took 0.031371 seconds and 4 git commands to generate.