1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
3 * probes/lttng-probe-rpm.c
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Copyright (C) 2012 Mentor Graphics Corp.
11 #include <linux/module.h>
12 #include <linux/device.h>
13 #include <lttng/tracer.h>
16 * Create the tracepoint static inlines from the kernel to validate that our
17 * trace event macros match the kernel we run on.
19 #include <trace/events/rpm.h>
22 * Create LTTng tracepoint probes.
24 #define LTTNG_PACKAGE_BUILD
25 #define CREATE_TRACE_POINTS
26 #define TRACE_INCLUDE_PATH instrumentation/events
28 #include <instrumentation/events/rpm.h>
30 MODULE_LICENSE("GPL and additional rights");
31 MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>");
32 MODULE_DESCRIPTION("LTTng rpm probes");
33 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
34 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
35 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
36 LTTNG_MODULES_EXTRAVERSION
);