]> Git Repo - linux.git/commit
blk-mq: avoid to touch q->elevator without any protection
authorMing Lei <[email protected]>
Thu, 16 Jun 2022 01:44:00 +0000 (09:44 +0800)
committerJens Axboe <[email protected]>
Thu, 16 Jun 2022 20:45:15 +0000 (14:45 -0600)
commit4d337cebcb1c27d9b48c48b9a98e939d4552d584
tree145de66b189943b28e6b089d4345459a7d22d2c6
parent5fd7a84a09e640016fe106dd3e992f5210e23dc7
blk-mq: avoid to touch q->elevator without any protection

q->elevator is referred in blk_mq_has_sqsched() without any protection,
no .q_usage_counter is held, no queue srcu and rcu read lock is held,
so potential use-after-free may be triggered.

Fix the issue by adding one queue flag for checking if the elevator
uses single queue style dispatch. Meantime the elevator feature flag
of ELEVATOR_F_MQ_AWARE isn't needed any more.

Cc: Jan Kara <[email protected]>
Signed-off-by: Ming Lei <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
block/bfq-iosched.c
block/blk-mq-sched.c
block/blk-mq.c
block/kyber-iosched.c
block/mq-deadline.c
include/linux/blkdev.h
This page took 0.060524 seconds and 4 git commands to generate.