projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b352389
)
ublk: pass NULL to blk_mq_alloc_disk() as queuedata
author
Ziyang Zhang
<ZiyangZhang@linux.alibaba.com>
Tue, 7 Feb 2023 07:08:39 +0000
(15:08 +0800)
committer
Jens Axboe
<axboe@kernel.dk>
Tue, 7 Feb 2023 14:21:31 +0000
(07:21 -0700)
queuedata is not referenced in ublk_drv and we can use driver_data
instead. Pass NULL to blk_mq_alloc_disk() as queuedata while allocating
ublk's gendisk.
Signed-off-by: Ziyang Zhang <ZiyangZhang@linux.alibaba.com>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Link:
https://lore.kernel.org/r/20230207070839.370817-4-ZiyangZhang@linux.alibaba.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/ublk_drv.c
patch
|
blob
|
history
diff --git
a/drivers/block/ublk_drv.c
b/drivers/block/ublk_drv.c
index 06eddefdf02a29fbcc79ed0b91e088cce62de3a3..d83fe2c2b3bab2a1ec10d761b2edb0f6092ffff1 100644
(file)
--- a/
drivers/block/ublk_drv.c
+++ b/
drivers/block/ublk_drv.c
@@
-1578,7
+1578,7
@@
static int ublk_ctrl_start_dev(struct ublk_device *ub, struct io_uring_cmd *cmd)
goto out_unlock;
}
- disk = blk_mq_alloc_disk(&ub->tag_set,
ub
);
+ disk = blk_mq_alloc_disk(&ub->tag_set,
NULL
);
if (IS_ERR(disk)) {
ret = PTR_ERR(disk);
goto out_unlock;