[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210507233951.78950-1-dave@stgolabs.net>
Date: Fri, 7 May 2021 16:39:51 -0700
From: Davidlohr Bueso <dave@...olabs.net>
To: a.darwish@...utronix.de
Cc: bigeasy@...utronix.de, peterz@...radead.org, tglx@...utronix.de,
shung-hsi.yu@...e.com, dave@...olabs.net,
linux-kernel@...r.kernel.org, Davidlohr Bueso <dbueso@...e.de>
Subject: [PATCH] seqlock,lockdep: Only check for preemption_disabled in non-rt
This silences the writer hitting this nonsensical warning on PREEMPT_RT.
Reported-by: Shung-Hsi Yu <shung-hsi.yu@...e.com>
Signed-off-by: Davidlohr Bueso <dbueso@...e.de>
---
include/linux/seqlock.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/linux/seqlock.h b/include/linux/seqlock.h
index f61e34fbaaea..c8f9253f1a2f 100644
--- a/include/linux/seqlock.h
+++ b/include/linux/seqlock.h
@@ -268,7 +268,9 @@ static inline bool __seqprop_preemptible(const seqcount_t *s)
static inline void __seqprop_assert(const seqcount_t *s)
{
+#ifndef CONFIG_PREEMPT_RT
lockdep_assert_preemption_disabled();
+#endif
}
#define __SEQ_RT IS_ENABLED(CONFIG_PREEMPT_RT)
--
2.26.2
Powered by blists - more mailing lists