Move headers under include/
[lttng-modules.git] / probes / lttng-probe-kmem.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
b283666f
PW
3 * probes/lttng-probe-kmem.c
4 *
5 * LTTng kmem 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>
16690f83 12#include <linux/mm.h>
b5304713 13#include <lttng/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/kmem.h>
20
b5304713 21#include <lttng/lttng-tracepoint.h>
7c68b363 22
b283666f
PW
23/*
24 * Create LTTng tracepoint probes.
25 */
26#define LTTNG_PACKAGE_BUILD
27#define CREATE_TRACE_POINTS
156a3977 28#define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
b283666f 29
156a3977 30#include <instrumentation/events/lttng-module/kmem.h>
b283666f
PW
31
32MODULE_LICENSE("GPL and additional rights");
1c124020
MJ
33MODULE_AUTHOR("Wade Farnsworth <wade_farnsworth@mentor.com>");
34MODULE_AUTHOR("Andrew Gabbasov <andrew_gabbasov@mentor.com>");
b283666f 35MODULE_DESCRIPTION("LTTng kmem probes");
13ab8b0a
MD
36MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "."
37 __stringify(LTTNG_MODULES_MINOR_VERSION) "."
38 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION)
39 LTTNG_MODULES_EXTRAVERSION);
This page took 0.035585 seconds and 4 git commands to generate.