linux/debian/patches-rt/0254-drm-i915-skip-DRM_I915...

37 lines
1.5 KiB
Diff
Raw Normal View History

2020-10-12 12:52:06 +00:00
From a95f9bdf51bc729a57da7e366550dffd92b90f4d Mon Sep 17 00:00:00 2001
Message-Id: <a95f9bdf51bc729a57da7e366550dffd92b90f4d.1601675152.git.zanussi@kernel.org>
In-Reply-To: <5b5a156f9808b1acf1205606e03da117214549ea.1601675151.git.zanussi@kernel.org>
References: <5b5a156f9808b1acf1205606e03da117214549ea.1601675151.git.zanussi@kernel.org>
2018-12-28 09:04:16 +00:00
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Date: Wed, 19 Dec 2018 10:47:02 +0100
2020-09-04 20:10:21 +00:00
Subject: [PATCH 254/333] drm/i915: skip DRM_I915_LOW_LEVEL_TRACEPOINTS with
2019-04-08 23:49:20 +00:00
NOTRACE
2020-10-12 12:52:06 +00:00
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.148-rt64.tar.xz
2018-12-28 09:04:16 +00:00
The order of the header files is important. If this header file is
included after tracepoint.h was included then the NOTRACE here becomes a
nop. Currently this happens for two .c files which use the tracepoitns
behind DRM_I915_LOW_LEVEL_TRACEPOINTS.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
2019-04-08 23:49:20 +00:00
drivers/gpu/drm/i915/i915_trace.h | 2 +-
2018-12-28 09:04:16 +00:00
1 file changed, 1 insertion(+), 1 deletion(-)
2019-04-08 23:49:20 +00:00
diff --git a/drivers/gpu/drm/i915/i915_trace.h b/drivers/gpu/drm/i915/i915_trace.h
index cc54ec0ef75c..33028d8f470e 100644
2018-12-28 09:04:16 +00:00
--- a/drivers/gpu/drm/i915/i915_trace.h
+++ b/drivers/gpu/drm/i915/i915_trace.h
2019-04-08 23:49:20 +00:00
@@ -683,7 +683,7 @@ DEFINE_EVENT(i915_request, i915_request_add,
2018-12-28 09:04:16 +00:00
TP_ARGS(rq)
);
-#if defined(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS)
+#if defined(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS) && !defined(NOTRACE)
DEFINE_EVENT(i915_request, i915_request_submit,
TP_PROTO(struct i915_request *rq),
TP_ARGS(rq)
2020-01-03 23:36:11 +00:00
--
2020-06-22 13:14:16 +00:00
2.17.1
2020-01-03 23:36:11 +00:00