Move headers under include/
[lttng-modules.git] / probes / lttng-probe-kvm-x86-mmu.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
1de8b2e4 14#include <kvm/iodev.h>
b3c40230
MG
15
16/*
17 * Create the tracepoint static inlines from the kernel to validate that our
18 * trace event macros match the kernel we run on.
19 */
b5304713 20#include <lttng/lttng-tracepoint.h>
b3c40230 21
c035cd50
MD
22#include <../../arch/x86/kvm/mmutrace.h>
23
24#undef TRACE_INCLUDE_PATH
25#undef TRACE_INCLUDE_FILE
26
b3c40230
MG
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/mmutrace.h>
b3c40230
MG
35
36MODULE_LICENSE("GPL and additional rights");
37MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
38MODULE_DESCRIPTION("LTTng kvm mmu 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.036251 seconds and 4 git commands to generate.