Cleanup: Move lttng-modules instrumentation headers
[lttng-modules.git] / probes / lttng-probe-scsi.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
b283666f
PW
3 * probes/lttng-probe-scsi.c
4 *
5 * LTTng scsi probes.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Copyright (C) 2012 Mentor Graphics Corp.
b283666f
PW
9 */
10
11#include <linux/module.h>
12#include <scsi/scsi_device.h>
2df37e95 13#include <lttng/tracer.h>
b283666f
PW
14
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/scsi.h>
20
21/*
22 * Create LTTng tracepoint probes.
23 */
24#define LTTNG_PACKAGE_BUILD
25#define CREATE_TRACE_POINTS
4f47ccf0 26#define TRACE_INCLUDE_PATH instrumentation/events
b283666f 27
4f47ccf0 28#include <instrumentation/events/scsi.h>
b283666f
PW
29
30MODULE_LICENSE("GPL and additional rights");
1c124020
MJ
31MODULE_AUTHOR("Wade Farnsworth <wade_farnsworth@mentor.com>");
32MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>");
b283666f 33MODULE_DESCRIPTION("LTTng scsi probes");
13ab8b0a
MD
34MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
35 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
36 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
37 LTTNG_MODULES_EXTRAVERSION);
This page took 0.036848 seconds and 4 git commands to generate.