Commit | Line | Data |
---|---|---|
0d1d4002 MD |
1 | /* |
2 | * probes/lttng-probe-irq.c | |
3 | * | |
4 | * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
5 | * | |
6 | * LTTng irq probes. | |
17baffe2 MD |
7 | * |
8 | * Dual LGPL v2.1/GPL v2 license. | |
0d1d4002 MD |
9 | */ |
10 | ||
11 | #include <linux/module.h> | |
391286e8 | 12 | #include <linux/interrupt.h> |
0d1d4002 | 13 | |
f62b389e MD |
14 | /* |
15 | * Create the tracepoint static inlines from the kernel to validate that our | |
16 | * trace event macros match the kernel we run on. | |
17 | */ | |
18 | #include <trace/events/irq.h> | |
19 | ||
0d1d4002 MD |
20 | /* |
21 | * Create LTTng tracepoint probes. | |
22 | */ | |
23 | #define LTTNG_PACKAGE_BUILD | |
24 | #define CREATE_TRACE_POINTS | |
f62b389e | 25 | #define TRACE_INCLUDE_PATH ../instrumentation/events/lttng-module |
0d1d4002 | 26 | |
f62b389e | 27 | #include "../instrumentation/events/lttng-module/irq.h" |
0d1d4002 MD |
28 | |
29 | MODULE_LICENSE("GPL and additional rights"); | |
30 | MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>"); | |
31 | MODULE_DESCRIPTION("LTTng irq probes"); |