Commit 6a27d28c authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Jens Axboe

block: move ->ia_ranges from the request_queue to the gendisk

Independent access ranges only matter for file system I/O and are only
valid with a registered gendisk, so move them there.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Reviewed-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
Tested-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
Link: https://lore.kernel.org/r/20220629062013.1331068-2-hch@lst.deSigned-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent b9a1c179
...@@ -106,7 +106,7 @@ static struct kobj_type blk_ia_ranges_ktype = { ...@@ -106,7 +106,7 @@ static struct kobj_type blk_ia_ranges_ktype = {
* *
* Register with sysfs a set of independent access ranges for @disk. * Register with sysfs a set of independent access ranges for @disk.
* If @new_iars is not NULL, this set of ranges is registered and the old set * If @new_iars is not NULL, this set of ranges is registered and the old set
* specified by q->ia_ranges is unregistered. Otherwise, q->ia_ranges is * specified by disk->ia_ranges is unregistered. Otherwise, disk->ia_ranges is
* registered if it is not already. * registered if it is not already.
*/ */
int disk_register_independent_access_ranges(struct gendisk *disk, int disk_register_independent_access_ranges(struct gendisk *disk,
...@@ -121,12 +121,12 @@ int disk_register_independent_access_ranges(struct gendisk *disk, ...@@ -121,12 +121,12 @@ int disk_register_independent_access_ranges(struct gendisk *disk,
/* If a new range set is specified, unregister the old one */ /* If a new range set is specified, unregister the old one */
if (new_iars) { if (new_iars) {
if (q->ia_ranges) if (disk->ia_ranges)
disk_unregister_independent_access_ranges(disk); disk_unregister_independent_access_ranges(disk);
q->ia_ranges = new_iars; disk->ia_ranges = new_iars;
} }
iars = q->ia_ranges; iars = disk->ia_ranges;
if (!iars) if (!iars)
return 0; return 0;
...@@ -138,7 +138,7 @@ int disk_register_independent_access_ranges(struct gendisk *disk, ...@@ -138,7 +138,7 @@ int disk_register_independent_access_ranges(struct gendisk *disk,
ret = kobject_init_and_add(&iars->kobj, &blk_ia_ranges_ktype, ret = kobject_init_and_add(&iars->kobj, &blk_ia_ranges_ktype,
&q->kobj, "%s", "independent_access_ranges"); &q->kobj, "%s", "independent_access_ranges");
if (ret) { if (ret) {
q->ia_ranges = NULL; disk->ia_ranges = NULL;
kobject_put(&iars->kobj); kobject_put(&iars->kobj);
return ret; return ret;
} }
...@@ -164,7 +164,7 @@ int disk_register_independent_access_ranges(struct gendisk *disk, ...@@ -164,7 +164,7 @@ int disk_register_independent_access_ranges(struct gendisk *disk,
void disk_unregister_independent_access_ranges(struct gendisk *disk) void disk_unregister_independent_access_ranges(struct gendisk *disk)
{ {
struct request_queue *q = disk->queue; struct request_queue *q = disk->queue;
struct blk_independent_access_ranges *iars = q->ia_ranges; struct blk_independent_access_ranges *iars = disk->ia_ranges;
int i; int i;
lockdep_assert_held(&q->sysfs_dir_lock); lockdep_assert_held(&q->sysfs_dir_lock);
...@@ -182,7 +182,7 @@ void disk_unregister_independent_access_ranges(struct gendisk *disk) ...@@ -182,7 +182,7 @@ void disk_unregister_independent_access_ranges(struct gendisk *disk)
kfree(iars); kfree(iars);
} }
q->ia_ranges = NULL; disk->ia_ranges = NULL;
} }
static struct blk_independent_access_range * static struct blk_independent_access_range *
...@@ -242,7 +242,7 @@ static bool disk_check_ia_ranges(struct gendisk *disk, ...@@ -242,7 +242,7 @@ static bool disk_check_ia_ranges(struct gendisk *disk,
static bool disk_ia_ranges_changed(struct gendisk *disk, static bool disk_ia_ranges_changed(struct gendisk *disk,
struct blk_independent_access_ranges *new) struct blk_independent_access_ranges *new)
{ {
struct blk_independent_access_ranges *old = disk->queue->ia_ranges; struct blk_independent_access_ranges *old = disk->ia_ranges;
int i; int i;
if (!old) if (!old)
...@@ -331,7 +331,7 @@ void disk_set_independent_access_ranges(struct gendisk *disk, ...@@ -331,7 +331,7 @@ void disk_set_independent_access_ranges(struct gendisk *disk,
if (blk_queue_registered(q)) { if (blk_queue_registered(q)) {
disk_register_independent_access_ranges(disk, iars); disk_register_independent_access_ranges(disk, iars);
} else { } else {
swap(q->ia_ranges, iars); swap(disk->ia_ranges, iars);
kfree(iars); kfree(iars);
} }
......
...@@ -171,6 +171,12 @@ struct gendisk { ...@@ -171,6 +171,12 @@ struct gendisk {
struct badblocks *bb; struct badblocks *bb;
struct lockdep_map lockdep_map; struct lockdep_map lockdep_map;
u64 diskseq; u64 diskseq;
/*
* Independent sector access ranges. This is always NULL for
* devices that do not have multiple independent access ranges.
*/
struct blk_independent_access_ranges *ia_ranges;
}; };
static inline bool disk_live(struct gendisk *disk) static inline bool disk_live(struct gendisk *disk)
...@@ -539,12 +545,6 @@ struct request_queue { ...@@ -539,12 +545,6 @@ struct request_queue {
bool mq_sysfs_init_done; bool mq_sysfs_init_done;
/*
* Independent sector access ranges. This is always NULL for
* devices that do not have multiple independent access ranges.
*/
struct blk_independent_access_ranges *ia_ranges;
/** /**
* @srcu: Sleepable RCU. Use as lock when type of the request queue * @srcu: Sleepable RCU. Use as lock when type of the request queue
* is blocking (BLK_MQ_F_BLOCKING). Must be the last member * is blocking (BLK_MQ_F_BLOCKING). Must be the last member
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment