Cleanup: Move lttng-modules instrumentation headers
[lttng-modules.git] / probes / lttng-probe-block.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
d32a57a2
MD
3 * probes/lttng-probe-block.c
4 *
d32a57a2 5 * LTTng block probes.
17baffe2 6 *
886d51a3 7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
d32a57a2
MD
8 */
9
10#include <linux/module.h>
11#include <linux/blktrace_api.h>
2df37e95
MD
12#include <lttng/tracer.h>
13#include <lttng/kernel-version.h>
d32a57a2 14
f62b389e
MD
15/*
16 * Create the tracepoint static inlines from the kernel to validate that our
17 * trace event macros match the kernel we run on.
18 */
19#include <trace/events/block.h>
20
156a3977 21#include <wrapper/tracepoint.h>
7c68b363 22
d32a57a2
MD
23/*
24 * Create LTTng tracepoint probes.
25 */
26#define LTTNG_PACKAGE_BUILD
27#define CREATE_TRACE_POINTS
4f47ccf0 28#define TRACE_INCLUDE_PATH instrumentation/events
d32a57a2 29
4f47ccf0 30#include <instrumentation/events/block.h>
d32a57a2
MD
31
32MODULE_LICENSE("GPL and additional rights");
33MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
34MODULE_DESCRIPTION("LTTng block probes");
13ab8b0a
MD
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.040605 seconds and 4 git commands to generate.