linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv2 0/2] fix sbitmap initialization and null_blk tagset setup
@ 2025-07-21 14:04 Nilay Shroff
  2025-07-21 14:04 ` [PATCHv2 1/2] lib/sbitmap: fix kernel crash observed when sbitmap depth is zero Nilay Shroff
  2025-07-21 14:04 ` [PATCHv2 2/2] null_blk: fix set->driver_data while setting up tagset Nilay Shroff
  0 siblings, 2 replies; 14+ messages in thread
From: Nilay Shroff @ 2025-07-21 14:04 UTC (permalink / raw)
  To: linux-block
  Cc: hch, dlemoal, hare, ming.lei, axboe, johannes.thumshirn, gjoyce

Hi,

This patchset fixes two subtle issues discovered while unit testing
nr_hw_queue update code using null_blk driver.

The first patch in the series, fixes an issue in the sbitmap initialization
code, where sb->alloc_hint is not explicitly set to NULL when the sbitmap
depth is zero. This can lead to a kernel crash in sbitmap_free(), which
unconditionally calls free_percpu() on sb->alloc_hint — even if it was
never allocated. The crash is caused by dereferencing an invalid pointer
or stale garbage value.

The second patch in the series fixes a bug in the null_blk driver where
the driver_data field of the tagset is not properly initialized when
setting up shared tagsets. This omission causes null_map_queues() to fail
during nr_hw_queues update, leading to no software queues (ctx) being
mapped to new hardware queues (hctx). As a result, the affected hctx
remains unused for any IO. Interestingly, this bug exposed the first
issue with sbitmap freeing.

As usual, review and feedback are most welcome!

Changes from v1:
    - The set->driver_data field should be initialized separately for the
      shared tagset to ensure it is correctly set for both shared and
      non-shared tagset cases. (Damien Le Moal)

Nilay Shroff (2):
  lib/sbitmap: fix kernel crash observed when sbitmap depth is zero
  null_blk: fix set->driver_data while setting up tagset

 drivers/block/null_blk/main.c | 1 +
 lib/sbitmap.c                 | 1 +
 2 files changed, 2 insertions(+)

-- 
2.50.1


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

end of thread, other threads:[~2025-07-23  6:52 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-21 14:04 [PATCHv2 0/2] fix sbitmap initialization and null_blk tagset setup Nilay Shroff
2025-07-21 14:04 ` [PATCHv2 1/2] lib/sbitmap: fix kernel crash observed when sbitmap depth is zero Nilay Shroff
2025-07-21 14:04 ` [PATCHv2 2/2] null_blk: fix set->driver_data while setting up tagset Nilay Shroff
2025-07-22  1:07   ` Damien Le Moal
2025-07-22  2:38     ` Yu Kuai
2025-07-22  8:48       ` Nilay Shroff
2025-07-22  8:30     ` Nilay Shroff
2025-07-22  9:16       ` Damien Le Moal
2025-07-22  9:17       ` Yu Kuai
2025-07-22  9:18         ` Damien Le Moal
2025-07-22  9:24           ` Yu Kuai
2025-07-22 10:19             ` Nilay Shroff
2025-07-23  0:41               ` Yu Kuai
2025-07-23  6:51                 ` Nilay Shroff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).