1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
3 * probes/lttng-probe-kvm.c
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 #include <linux/module.h>
11 #include <linux/kvm_host.h>
12 #include <lttng-tracer.h>
13 #include <lttng-kernel-version.h>
15 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,1,0))
16 #include <kvm/iodev.h>
17 #else /* #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,1,0)) */
18 #include <../../virt/kvm/iodev.h>
19 #endif /* #else #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,1,0)) */
22 * Create the tracepoint static inlines from the kernel to validate that our
23 * trace event macros match the kernel we run on.
25 #include <trace/events/kvm.h>
27 #include <wrapper/tracepoint.h>
30 * Create LTTng tracepoint probes.
32 #define LTTNG_PACKAGE_BUILD
33 #define CREATE_TRACE_POINTS
35 #define TRACE_INCLUDE_PATH instrumentation/events/lttng-module/arch/x86/kvm
36 #include <instrumentation/events/lttng-module/arch/x86/kvm/trace.h>
38 MODULE_LICENSE("GPL and additional rights");
39 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
40 MODULE_DESCRIPTION("LTTng kvm probes");
41 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
42 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
43 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
44 LTTNG_MODULES_EXTRAVERSION
);