Move headers under include/
[lttng-modules.git] / probes / lttng-probe-kvm-x86.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
b3c40230
MG
3 * probes/lttng-probe-kvm.c
4 *
5 * LTTng kvm probes.
6 *
7 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
b3c40230
MG
8 */
9
10#include <linux/module.h>
11#include <linux/kvm_host.h>
b5304713 12#include <lttng/lttng-tracer.h>
1de8b2e4 13
a51d5d47
MD
14/* TODO: check for header availability in Makefile */
15#include <../../arch/x86/kvm/kvm_emulate.h>
a51d5d47 16
1de8b2e4 17#include <kvm/iodev.h>
b3c40230
MG
18
19/*
20 * Create the tracepoint static inlines from the kernel to validate that our
21 * trace event macros match the kernel we run on.
22 */
23#include <trace/events/kvm.h>
24
b5304713 25#include <lttng/lttng-tracepoint.h>
b3c40230
MG
26
27/*
28 * Create LTTng tracepoint probes.
29 */
30#define LTTNG_PACKAGE_BUILD
31#define CREATE_TRACE_POINTS
32
156a3977
MD
33#define TRACE_INCLUDE_PATH instrumentation/events/lttng-module/arch/x86/kvm
34#include <instrumentation/events/lttng-module/arch/x86/kvm/trace.h>
b3c40230
MG
35
36MODULE_LICENSE("GPL and additional rights");
37MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
38MODULE_DESCRIPTION("LTTng kvm probes");
13ab8b0a
MD
39MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
40 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
41 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
42 LTTNG_MODULES_EXTRAVERSION);
This page took 0.0354 seconds and 4 git commands to generate.