diff options
author | Yang Yang <yang.yang@vivo.com> | 2020-10-09 01:00:14 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-10-09 12:46:28 -0600 |
commit | 47ce030b7ac5a5259a9a5919f230b52497afc31a (patch) | |
tree | 0e36f94f3e3c2a877385be2e851c02f36a7fcde3 /block/blk-sysfs.c | |
parent | c728152413312de6c95731a845d30c9ae735d656 (diff) | |
download | linux-rpi-47ce030b7ac5a5259a9a5919f230b52497afc31a.tar.gz linux-rpi-47ce030b7ac5a5259a9a5919f230b52497afc31a.tar.bz2 linux-rpi-47ce030b7ac5a5259a9a5919f230b52497afc31a.zip |
blk-mq: move cancel of hctx->run_work to the front of blk_exit_queue
blk_exit_queue will free elevator_data, while blk_mq_run_work_fn
will access it. Move cancel of hctx->run_work to the front of
blk_exit_queue to avoid use-after-free.
Fixes: 1b97871b501f ("blk-mq: move cancel of hctx->run_work into blk_mq_hw_sysfs_release")
Signed-off-by: Yang Yang <yang.yang@vivo.com>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-sysfs.c')
-rw-r--r-- | block/blk-sysfs.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c index bdc8cf575654..b513f1683af0 100644 --- a/block/blk-sysfs.c +++ b/block/blk-sysfs.c @@ -790,9 +790,16 @@ static void blk_release_queue(struct kobject *kobj) blk_free_queue_stats(q->stats); - if (queue_is_mq(q)) + if (queue_is_mq(q)) { + struct blk_mq_hw_ctx *hctx; + int i; + cancel_delayed_work_sync(&q->requeue_work); + queue_for_each_hw_ctx(q, hctx, i) + cancel_delayed_work_sync(&hctx->run_work); + } + blk_exit_queue(q); blk_queue_free_zone_bitmaps(q); |