All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/2] realtime: avoid BUG when the list is not locked
@ 2019-11-11 13:59 Mikulas Patocka
  2019-11-12  9:10 ` [dm-devel] " Daniel Wagner
  0 siblings, 1 reply; 5+ messages in thread
From: Mikulas Patocka @ 2019-11-11 13:59 UTC (permalink / raw)
  To: Mike Snitzer, Scott Wood; +Cc: dm-devel, Nikos Tsironis, Ilias Tsitsimpis

list_bl.h would crash with BUG() if we used it without locking. 
dm-snapshot uses its own locking on readltime kernels, so to avoid this 
BUG, we must set LIST_BL_LOCKMASK = 0.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>

Index: linux-rt-devel/include/linux/list_bl.h
===================================================================
--- linux-rt-devel.orig/include/linux/list_bl.h	2019-11-07 14:01:51.000000000 +0100
+++ linux-rt-devel/include/linux/list_bl.h	2019-11-08 10:12:49.000000000 +0100
@@ -19,7 +19,7 @@
  * some fast and compact auxiliary data.
  */
 
-#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
+#if (defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)) && !defined(CONFIG_PREEMPT_RT_BASE)
 #define LIST_BL_LOCKMASK	1UL
 #else
 #define LIST_BL_LOCKMASK	0UL
@@ -161,9 +161,6 @@ static inline void hlist_bl_lock(struct
 	bit_spin_lock(0, (unsigned long *)b);
 #else
 	raw_spin_lock(&b->lock);
-#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
-	__set_bit(0, (unsigned long *)b);
-#endif
 #endif
 }
 
@@ -172,9 +169,6 @@ static inline void hlist_bl_unlock(struc
 #ifndef CONFIG_PREEMPT_RT_BASE
 	__bit_spin_unlock(0, (unsigned long *)b);
 #else
-#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK)
-	__clear_bit(0, (unsigned long *)b);
-#endif
 	raw_spin_unlock(&b->lock);
 #endif
 }

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-11-12 11:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-11 13:59 [PATCH 2/2] realtime: avoid BUG when the list is not locked Mikulas Patocka
2019-11-12  9:10 ` [dm-devel] " Daniel Wagner
2019-11-12 11:21   ` Mikulas Patocka
2019-11-12 11:21     ` Mikulas Patocka
2019-11-12 11:39     ` [dm-devel] " Sebastian Andrzej Siewior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.