Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / probes / lttng-probe-statedump.c
1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
2 *
3 * probes/lttng-probe-statedump.c
4 *
5 * LTTng statedump probes.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 */
9
10 #include <linux/module.h>
11 #include <linux/interrupt.h>
12 #include <linux/netlink.h>
13 #include <linux/inet.h>
14 #include <linux/ip.h>
15 #include <linux/netdevice.h>
16 #include <linux/inetdevice.h>
17 #include <linux/sched.h>
18 #include <lttng-events.h>
19 #include <lttng-tracer.h>
20
21 /*
22 * Create LTTng tracepoint probes.
23 */
24 #define LTTNG_PACKAGE_BUILD
25 #define CREATE_TRACE_POINTS
26 #define TP_SESSION_CHECK
27 #define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
28 #define TRACE_INCLUDE_FILE lttng-statedump
29
30 #include <instrumentation/events/lttng-module/lttng-statedump.h>
31
32 MODULE_LICENSE("GPL and additional rights");
33 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
34 MODULE_DESCRIPTION("LTTng statedump probes");
35 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
36 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
37 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
38 LTTNG_MODULES_EXTRAVERSION);
This page took 0.029209 seconds and 4 git commands to generate.