linux/debian/patches-rt/0135-locking-locktorture-Do...

31 lines
1.1 KiB
Diff
Raw Normal View History

From: "Wolfgang M. Reimer" <linuxball@gmail.com>
Date: Tue, 21 Jul 2015 16:20:07 +0200
2019-11-25 00:04:39 +00:00
Subject: [PATCH 135/290] locking: locktorture: Do NOT include rwlock.h
2019-04-08 23:49:20 +00:00
directly
2019-11-25 00:04:39 +00:00
Origin: https://git.kernel.org/cgit/linux/kernel/git/rt/linux-stable-rt.git/commit?id=95a2cfde3e99e4cbf100ec5da1e4897618359af0
Including rwlock.h directly will cause kernel builds to fail
if CONFIG_PREEMPT_RT_FULL is defined. The correct header file
(rwlock_rt.h OR rwlock.h) will be included by spinlock.h which
is included by locktorture.c anyway.
Cc: stable-rt@vger.kernel.org
Signed-off-by: Wolfgang M. Reimer <linuxball@gmail.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
2019-04-08 23:49:20 +00:00
kernel/locking/locktorture.c | 1 -
1 file changed, 1 deletion(-)
2019-04-08 23:49:20 +00:00
diff --git a/kernel/locking/locktorture.c b/kernel/locking/locktorture.c
index 7d0b0ed74404..a81e6ef33a04 100644
--- a/kernel/locking/locktorture.c
+++ b/kernel/locking/locktorture.c
2018-10-30 12:40:05 +00:00
@@ -29,7 +29,6 @@
#include <linux/kthread.h>
#include <linux/sched/rt.h>
#include <linux/spinlock.h>
-#include <linux/rwlock.h>
#include <linux/mutex.h>
#include <linux/rwsem.h>
#include <linux/smp.h>