]> www.infradead.org Git - users/hch/misc.git/commit
block: RCU protect disk->conv_zones_bitmap
authorDamien Le Moal <dlemoal@kernel.org>
Thu, 7 Nov 2024 06:42:59 +0000 (15:42 +0900)
committerJens Axboe <axboe@kernel.dk>
Thu, 7 Nov 2024 22:30:54 +0000 (15:30 -0700)
commitd7cb6d7414ea1b33536fa6d11805cb8dceec1f97
treeebd612c6ac80d9a0cab1c858f3e406c65669a530
parent8e71afb94d6ed59055b67dadbc423c70104f21a9
block: RCU protect disk->conv_zones_bitmap

Ensure that a disk revalidation changing the conventional zones bitmap
of a disk does not cause invalid memory references when using the
disk_zone_is_conv() helper by RCU protecting the disk->conv_zones_bitmap
pointer.

disk_zone_is_conv() is modified to operate under the RCU read lock and
the function disk_set_conv_zones_bitmap() is added to update a disk
conv_zones_bitmap pointer using rcu_replace_pointer() with the disk
zone_wplugs_lock spinlock held.

disk_free_zone_resources() is modified to call
disk_update_zone_resources() with a NULL bitmap pointer to free the disk
conv_zones_bitmap. disk_set_conv_zones_bitmap() is also used in
disk_update_zone_resources() to set the new (revalidated) bitmap and
free the old one.

Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Link: https://lore.kernel.org/r/20241107064300.227731-2-dlemoal@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-zoned.c
include/linux/blkdev.h