Cleanup: Move instrumentation/ headers to include/instrumentation/
[lttng-modules.git] / instrumentation / events / lttng-module / napi.h
diff --git a/instrumentation/events/lttng-module/napi.h b/instrumentation/events/lttng-module/napi.h
deleted file mode 100644 (file)
index 8a32993..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-#undef TRACE_SYSTEM
-#define TRACE_SYSTEM napi
-
-#if !defined(LTTNG_TRACE_NAPI_H) || defined(TRACE_HEADER_MULTI_READ)
-#define LTTNG_TRACE_NAPI_H
-
-#include <lttng/tracepoint-event.h>
-#include <linux/netdevice.h>
-#include <linux/ftrace.h>
-
-#define NO_DEV "(no_device)"
-
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,8,0))
-
-LTTNG_TRACEPOINT_EVENT(napi_poll,
-
-       TP_PROTO(struct napi_struct *napi, int work, int budget),
-
-       TP_ARGS(napi, work, budget),
-
-       TP_FIELDS(
-               ctf_integer_hex(struct napi_struct *, napi, napi)
-               ctf_string(dev_name, napi->dev ? napi->dev->name : NO_DEV)
-               ctf_integer(int, work, work)
-               ctf_integer(int, budget, budget)
-       )
-)
-
-#else
-
-LTTNG_TRACEPOINT_EVENT(napi_poll,
-
-       TP_PROTO(struct napi_struct *napi),
-
-       TP_ARGS(napi),
-
-       TP_FIELDS(
-               ctf_integer_hex(struct napi_struct *, napi, napi)
-               ctf_string(dev_name, napi->dev ? napi->dev->name : NO_DEV)
-       )
-)
-
-#endif
-
-#undef NO_DEV
-
-#endif /* LTTNG_TRACE_NAPI_H */
-
-/* This part must be outside protection */
-#include <lttng/define_trace.h>
This page took 0.023828 seconds and 4 git commands to generate.