public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT.
@ 2023-03-23 16:18 Sebastian Andrzej Siewior
  2023-03-24  4:07 ` Sergey Senozhatsky
  0 siblings, 1 reply; 7+ messages in thread
From: Sebastian Andrzej Siewior @ 2023-03-23 16:18 UTC (permalink / raw)
  To: linux-kernel, linux-block
  Cc: Jens Axboe, Mike Galbraith, Minchan Kim, Sergey Senozhatsky,
	Thomas Gleixner

From: Mike Galbraith <umgwanakikbuti@gmail.com>

The bit spinlock disables preemption. The spinlock_t lock becomes a sleeping
lock on PREEMPT_RT and it can not be acquired in this context. In this locked
section, zs_free() acquires a zs_pool::lock, and there is access to
zram::wb_limit_lock.

Use a spinlock_t on PREEMPT_RT for locking and set/ clear ZRAM_LOCK bit after
the lock has been acquired/ dropped.

Signed-off-by: Mike Galbraith <umgwanakikbuti@gmail.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Link: https://lkml.kernel.org/r/YqIbMuHCPiQk+Ac2@linutronix.de
---

I'm simply forwarding Mike's patch here. The other alternative is to let
the driver depend on !PREEMPT_RT. I can't tell likely it is that this
driver is used. Mike most likely stumbled upon it while running LTP.

 drivers/block/zram/zram_drv.c |   36 ++++++++++++++++++++++++++++++++++++
 drivers/block/zram/zram_drv.h |    3 +++
 2 files changed, 39 insertions(+)

--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -57,6 +57,40 @@ static void zram_free_page(struct zram *
 static int zram_bvec_read(struct zram *zram, struct bio_vec *bvec,
 				u32 index, int offset, struct bio *bio);
 
+#ifdef CONFIG_PREEMPT_RT
+static void zram_meta_init_table_locks(struct zram *zram, size_t num_pages)
+{
+	size_t index;
+
+	for (index = 0; index < num_pages; index++)
+		spin_lock_init(&zram->table[index].lock);
+}
+
+static int zram_slot_trylock(struct zram *zram, u32 index)
+{
+	int ret;
+
+	ret = spin_trylock(&zram->table[index].lock);
+	if (ret)
+		__set_bit(ZRAM_LOCK, &zram->table[index].flags);
+	return ret;
+}
+
+static void zram_slot_lock(struct zram *zram, u32 index)
+{
+	spin_lock(&zram->table[index].lock);
+	__set_bit(ZRAM_LOCK, &zram->table[index].flags);
+}
+
+static void zram_slot_unlock(struct zram *zram, u32 index)
+{
+	__clear_bit(ZRAM_LOCK, &zram->table[index].flags);
+	spin_unlock(&zram->table[index].lock);
+}
+
+#else
+
+static void zram_meta_init_table_locks(struct zram *zram, size_t num_pages) { }
 
 static int zram_slot_trylock(struct zram *zram, u32 index)
 {
@@ -72,6 +106,7 @@ static void zram_slot_unlock(struct zram
 {
 	bit_spin_unlock(ZRAM_LOCK, &zram->table[index].flags);
 }
+#endif
 
 static inline bool init_done(struct zram *zram)
 {
@@ -1311,6 +1346,7 @@ static bool zram_meta_alloc(struct zram
 
 	if (!huge_class_size)
 		huge_class_size = zs_huge_class_size(zram->mem_pool);
+	zram_meta_init_table_locks(zram, num_pages);
 	return true;
 }
 
--- a/drivers/block/zram/zram_drv.h
+++ b/drivers/block/zram/zram_drv.h
@@ -69,6 +69,9 @@ struct zram_table_entry {
 		unsigned long element;
 	};
 	unsigned long flags;
+#ifdef CONFIG_PREEMPT_RT
+	spinlock_t lock;
+#endif
 #ifdef CONFIG_ZRAM_MEMORY_TRACKING
 	ktime_t ac_time;
 #endif

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

* Re: [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT.
  2023-03-23 16:18 [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT Sebastian Andrzej Siewior
@ 2023-03-24  4:07 ` Sergey Senozhatsky
  2023-03-24  4:32   ` Mike Galbraith
  0 siblings, 1 reply; 7+ messages in thread
From: Sergey Senozhatsky @ 2023-03-24  4:07 UTC (permalink / raw)
  To: Sebastian Andrzej Siewior
  Cc: linux-kernel, linux-block, Jens Axboe, Mike Galbraith,
	Minchan Kim, Sergey Senozhatsky, Thomas Gleixner

On (23/03/23 17:18), Sebastian Andrzej Siewior wrote:
> From: Mike Galbraith <umgwanakikbuti@gmail.com>
> 
> The bit spinlock disables preemption. The spinlock_t lock becomes a sleeping
> lock on PREEMPT_RT and it can not be acquired in this context. In this locked
> section, zs_free() acquires a zs_pool::lock, and there is access to
> zram::wb_limit_lock.
> 
> Use a spinlock_t on PREEMPT_RT for locking and set/ clear ZRAM_LOCK bit after
> the lock has been acquired/ dropped.
> 
> Signed-off-by: Mike Galbraith <umgwanakikbuti@gmail.com>
> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
> Link: https://lkml.kernel.org/r/YqIbMuHCPiQk+Ac2@linutronix.de
> ---
> 
> I'm simply forwarding Mike's patch here. The other alternative is to let
> the driver depend on !PREEMPT_RT. I can't tell likely it is that this
> driver is used. Mike most likely stumbled upon it while running LTP.

Yeah, I'm curious if anyone uses zram in preempt-rt systems. I don't
mind this patch but would be nice to add new code when it solves some
real problems. Maybe `depend on !PREEMPT_RT` can be a better option.

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

* Re: [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT.
  2023-03-24  4:07 ` Sergey Senozhatsky
@ 2023-03-24  4:32   ` Mike Galbraith
  0 siblings, 0 replies; 7+ messages in thread
From: Mike Galbraith @ 2023-03-24  4:32 UTC (permalink / raw)
  To: Sergey Senozhatsky, Sebastian Andrzej Siewior
  Cc: linux-kernel, linux-block, Jens Axboe, Minchan Kim,
	Thomas Gleixner

On Fri, 2023-03-24 at 13:07 +0900, Sergey Senozhatsky wrote:
> On (23/03/23 17:18), Sebastian Andrzej Siewior wrote:
> > Mike most likely stumbled upon it while running LTP.
>
> Yeah, I'm curious if anyone uses zram in preempt-rt systems. I don't
> mind this patch but would be nice to add new code when it solves some
> real problems. Maybe `depend on !PREEMPT_RT` can be a better option.

Patchlet's job here is only obese config RT vs !RT testing.  It can
always move back into local_patches, it won't be lonely ;-)

	-Mike

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

* [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT.
@ 2024-06-19 15:08 Sebastian Andrzej Siewior
  2024-06-19 17:34 ` Jens Axboe
  0 siblings, 1 reply; 7+ messages in thread
From: Sebastian Andrzej Siewior @ 2024-06-19 15:08 UTC (permalink / raw)
  To: linux-block, linux-kernel
  Cc: Jens Axboe, Mike Galbraith, Minchan Kim, Sergey Senozhatsky,
	Thomas Gleixner

From: Mike Galbraith <umgwanakikbuti@gmail.com>

The bit spinlock disables preemption. The spinlock_t lock becomes a sleeping
lock on PREEMPT_RT and it can not be acquired in this context. In this locked
section, zs_free() acquires a zs_pool::lock, and there is access to
zram::wb_limit_lock.

Use a spinlock_t on PREEMPT_RT for locking and set/ clear ZRAM_LOCK bit after
the lock has been acquired/ dropped.

Signed-off-by: Mike Galbraith <umgwanakikbuti@gmail.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
I posted this few times. Mikes intents to keep it based on last feedback.
Any reason not to apply it?

https://lkml.kernel.org/r/YqIbMuHCPiQk+Ac2@linutronix.de
https://lore.kernel.org/20230323161830.jFbWCosd@linutronix.de

 drivers/block/zram/zram_drv.c |   37 +++++++++++++++++++++++++++++++++++++
 drivers/block/zram/zram_drv.h |    3 +++
 2 files changed, 40 insertions(+)

--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -57,6 +57,41 @@ static void zram_free_page(struct zram *
 static int zram_read_page(struct zram *zram, struct page *page, u32 index,
 			  struct bio *parent);
 
+#ifdef CONFIG_PREEMPT_RT
+static void zram_meta_init_table_locks(struct zram *zram, size_t num_pages)
+{
+	size_t index;
+
+	for (index = 0; index < num_pages; index++)
+		spin_lock_init(&zram->table[index].lock);
+}
+
+static int zram_slot_trylock(struct zram *zram, u32 index)
+{
+	int ret;
+
+	ret = spin_trylock(&zram->table[index].lock);
+	if (ret)
+		__set_bit(ZRAM_LOCK, &zram->table[index].flags);
+	return ret;
+}
+
+static void zram_slot_lock(struct zram *zram, u32 index)
+{
+	spin_lock(&zram->table[index].lock);
+	__set_bit(ZRAM_LOCK, &zram->table[index].flags);
+}
+
+static void zram_slot_unlock(struct zram *zram, u32 index)
+{
+	__clear_bit(ZRAM_LOCK, &zram->table[index].flags);
+	spin_unlock(&zram->table[index].lock);
+}
+
+#else
+
+static void zram_meta_init_table_locks(struct zram *zram, size_t num_pages) { }
+
 static int zram_slot_trylock(struct zram *zram, u32 index)
 {
 	return bit_spin_trylock(ZRAM_LOCK, &zram->table[index].flags);
@@ -71,6 +106,7 @@ static void zram_slot_unlock(struct zram
 {
 	bit_spin_unlock(ZRAM_LOCK, &zram->table[index].flags);
 }
+#endif
 
 static inline bool init_done(struct zram *zram)
 {
@@ -1226,6 +1262,7 @@ static bool zram_meta_alloc(struct zram
 
 	if (!huge_class_size)
 		huge_class_size = zs_huge_class_size(zram->mem_pool);
+	zram_meta_init_table_locks(zram, num_pages);
 	return true;
 }
 
--- a/drivers/block/zram/zram_drv.h
+++ b/drivers/block/zram/zram_drv.h
@@ -69,6 +69,9 @@ struct zram_table_entry {
 		unsigned long element;
 	};
 	unsigned long flags;
+#ifdef CONFIG_PREEMPT_RT
+	spinlock_t lock;
+#endif
 #ifdef CONFIG_ZRAM_TRACK_ENTRY_ACTIME
 	ktime_t ac_time;
 #endif

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

* Re: [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT.
  2024-06-19 15:08 Sebastian Andrzej Siewior
@ 2024-06-19 17:34 ` Jens Axboe
  2024-06-19 17:52   ` Sebastian Andrzej Siewior
  0 siblings, 1 reply; 7+ messages in thread
From: Jens Axboe @ 2024-06-19 17:34 UTC (permalink / raw)
  To: Sebastian Andrzej Siewior, linux-block, linux-kernel
  Cc: Mike Galbraith, Minchan Kim, Sergey Senozhatsky, Thomas Gleixner

On 6/19/24 9:08 AM, Sebastian Andrzej Siewior wrote:
> From: Mike Galbraith <umgwanakikbuti@gmail.com>
> 
> The bit spinlock disables preemption. The spinlock_t lock becomes a sleeping
> lock on PREEMPT_RT and it can not be acquired in this context. In this locked
> section, zs_free() acquires a zs_pool::lock, and there is access to
> zram::wb_limit_lock.
> 
> Use a spinlock_t on PREEMPT_RT for locking and set/ clear ZRAM_LOCK bit after
> the lock has been acquired/ dropped.

The conditional code depending on CONFIG_PREEMPT_RT is nasty. Why not
just get rid of that and use the CONFIG_PREEMPT_RT variants for
everything? They are either good enough to work well in general, or it
should be redone such that it is.

-- 
Jens Axboe


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

* Re: [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT.
  2024-06-19 17:34 ` Jens Axboe
@ 2024-06-19 17:52   ` Sebastian Andrzej Siewior
  2024-06-19 18:01     ` Jens Axboe
  0 siblings, 1 reply; 7+ messages in thread
From: Sebastian Andrzej Siewior @ 2024-06-19 17:52 UTC (permalink / raw)
  To: Jens Axboe
  Cc: linux-block, linux-kernel, Mike Galbraith, Minchan Kim,
	Sergey Senozhatsky, Thomas Gleixner

On 2024-06-19 11:34:23 [-0600], Jens Axboe wrote:
> On 6/19/24 9:08 AM, Sebastian Andrzej Siewior wrote:
> > From: Mike Galbraith <umgwanakikbuti@gmail.com>
> > 
> > The bit spinlock disables preemption. The spinlock_t lock becomes a sleeping
> > lock on PREEMPT_RT and it can not be acquired in this context. In this locked
> > section, zs_free() acquires a zs_pool::lock, and there is access to
> > zram::wb_limit_lock.
> > 
> > Use a spinlock_t on PREEMPT_RT for locking and set/ clear ZRAM_LOCK bit after
> > the lock has been acquired/ dropped.
> 
> The conditional code depending on CONFIG_PREEMPT_RT is nasty. Why not
> just get rid of that and use the CONFIG_PREEMPT_RT variants for
> everything? They are either good enough to work well in general, or it
> should be redone such that it is.

That would increase the struct size with lockdep for !RT. But it is
probably not a concern. Also other bits (besides ZRAM_LOCK) can not be
added but that wasn't needed in the last few years.
Okay, let me redo it.

Sebastian

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

* Re: [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT.
  2024-06-19 17:52   ` Sebastian Andrzej Siewior
@ 2024-06-19 18:01     ` Jens Axboe
  0 siblings, 0 replies; 7+ messages in thread
From: Jens Axboe @ 2024-06-19 18:01 UTC (permalink / raw)
  To: Sebastian Andrzej Siewior
  Cc: linux-block, linux-kernel, Mike Galbraith, Minchan Kim,
	Sergey Senozhatsky, Thomas Gleixner

On 6/19/24 11:52 AM, Sebastian Andrzej Siewior wrote:
> On 2024-06-19 11:34:23 [-0600], Jens Axboe wrote:
>> On 6/19/24 9:08 AM, Sebastian Andrzej Siewior wrote:
>>> From: Mike Galbraith <umgwanakikbuti@gmail.com>
>>>
>>> The bit spinlock disables preemption. The spinlock_t lock becomes a sleeping
>>> lock on PREEMPT_RT and it can not be acquired in this context. In this locked
>>> section, zs_free() acquires a zs_pool::lock, and there is access to
>>> zram::wb_limit_lock.
>>>
>>> Use a spinlock_t on PREEMPT_RT for locking and set/ clear ZRAM_LOCK bit after
>>> the lock has been acquired/ dropped.
>>
>> The conditional code depending on CONFIG_PREEMPT_RT is nasty. Why not
>> just get rid of that and use the CONFIG_PREEMPT_RT variants for
>> everything? They are either good enough to work well in general, or it
>> should be redone such that it is.
> 
> That would increase the struct size with lockdep for !RT. But it is
> probably not a concern. Also other bits (besides ZRAM_LOCK) can not be
> added but that wasn't needed in the last few years.

Yeah I really don't think anyone cares about the struct size when
PROVE_LOCKING is on...

-- 
Jens Axboe


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

end of thread, other threads:[~2024-06-19 18:01 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-23 16:18 [PATCH] zram: Replace bit spinlocks with spinlock_t for PREEMPT_RT Sebastian Andrzej Siewior
2023-03-24  4:07 ` Sergey Senozhatsky
2023-03-24  4:32   ` Mike Galbraith
  -- strict thread matches above, loose matches on Subject: below --
2024-06-19 15:08 Sebastian Andrzej Siewior
2024-06-19 17:34 ` Jens Axboe
2024-06-19 17:52   ` Sebastian Andrzej Siewior
2024-06-19 18:01     ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox