page alloc wrapper: Fix get_pfnblock_flags_mask prototype
[lttng-modules.git] / probes / lttng-probe-skb.c
... / ...
CommitLineData
1/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
2 *
3 * probes/lttng-probe-skb.c
4 *
5 * LTTng skb 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 <lttng-tracer.h>
13
14/*
15 * Create the tracepoint static inlines from the kernel to validate that our
16 * trace event macros match the kernel we run on.
17 */
18#include <trace/events/skb.h>
19
20#include <wrapper/tracepoint.h>
21
22/*
23 * Create LTTng tracepoint probes.
24 */
25#define LTTNG_PACKAGE_BUILD
26#define CREATE_TRACE_POINTS
27#define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
28
29#include <instrumentation/events/lttng-module/skb.h>
30
31MODULE_LICENSE("GPL and additional rights");
32MODULE_AUTHOR("Wade Farnsworth <wade_farnsworth@mentor.com>");
33MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>");
34MODULE_DESCRIPTION("LTTng skb probes");
35MODULE_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.023148 seconds and 4 git commands to generate.