blkcg_deactivate_policy() can be called from either blk_cleanup_queue() for all policies or elevator_switch() for bfq policy. Thus there is no need to freeze queue in blkcg_deactivate_policy() since the caller freeze the queue aready. Signed-off-by: Yu Kuai <yukuai3@xxxxxxxxxx> --- block/blk-cgroup.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c index cec86a705c89..ca60233c8392 100644 --- a/block/blk-cgroup.c +++ b/block/blk-cgroup.c @@ -1398,9 +1398,6 @@ void blkcg_deactivate_policy(struct request_queue *q, if (!blkcg_policy_enabled(q, pol)) return; - if (queue_is_mq(q)) - blk_mq_freeze_queue(q); - spin_lock_irq(&q->queue_lock); __clear_bit(pol->plid, q->blkcg_pols); @@ -1419,9 +1416,6 @@ void blkcg_deactivate_policy(struct request_queue *q, } spin_unlock_irq(&q->queue_lock); - - if (queue_is_mq(q)) - blk_mq_unfreeze_queue(q); } EXPORT_SYMBOL_GPL(blkcg_deactivate_policy); -- 2.31.1