From: Yu Kuai <yukuai3@xxxxxxxxxx> Replace the internal spinlock 'bfqd->lock' with the new spinlock in elevator_queue, things will keep working the same way as before. Signed-off-by: Yu Kuai <yukuai3@xxxxxxxxxx> --- block/bfq-cgroup.c | 6 ++--- block/bfq-iosched.c | 54 +++++++++++++++++++++------------------------ block/bfq-iosched.h | 2 -- 3 files changed, 28 insertions(+), 34 deletions(-) diff --git a/block/bfq-cgroup.c b/block/bfq-cgroup.c index 9fb9f3533150..a23622cc2be2 100644 --- a/block/bfq-cgroup.c +++ b/block/bfq-cgroup.c @@ -746,7 +746,7 @@ static void bfq_sync_bfqq_move(struct bfq_data *bfqd, * @bic: the bic to move. * @bfqg: the group to move to. * - * Move bic to blkcg, assuming that bfqd->lock is held; which makes + * Move bic to blkcg, assuming that elevator lock is held; which makes * sure that the reference to cgroup is valid across the call (see * comments in bfq_bic_update_cgroup on this issue) */ @@ -878,7 +878,7 @@ static void bfq_pd_offline(struct blkg_policy_data *pd) unsigned long flags; int i; - spin_lock_irqsave(&bfqd->lock, flags); + elevator_lock_irqsave(bfqd->queue->elevator, flags); if (!entity) /* root group */ goto put_async_queues; @@ -923,7 +923,7 @@ static void bfq_pd_offline(struct blkg_policy_data *pd) put_async_queues: bfq_put_async_queues(bfqd, bfqg); - spin_unlock_irqrestore(&bfqd->lock, flags); + elevator_unlock_irqrestore(bfqd->queue->elevator, flags); /* * @blkg is going offline and will be ignored by * blkg_[rw]stat_recursive_sum(). Transfer stats to the parent so diff --git a/block/bfq-iosched.c b/block/bfq-iosched.c index 4a8d3d96bfe4..729a1c2ada6d 100644 --- a/block/bfq-iosched.c +++ b/block/bfq-iosched.c @@ -466,7 +466,7 @@ static struct bfq_io_cq *bfq_bic_lookup(struct request_queue *q) */ void bfq_schedule_dispatch(struct bfq_data *bfqd) { - lockdep_assert_held(&bfqd->lock); + elevator_lock_assert_held(bfqd->queue->elevator); if (bfqd->queued != 0) { bfq_log(bfqd, "schedule dispatch"); @@ -591,7 +591,7 @@ static bool bfqq_request_over_limit(struct bfq_data *bfqd, int level; retry: - spin_lock_irq(&bfqd->lock); + elevator_lock_irq(bfqd->queue->elevator); bfqq = bic_to_bfqq(bic, op_is_sync(opf), act_idx); if (!bfqq) goto out; @@ -603,7 +603,7 @@ static bool bfqq_request_over_limit(struct bfq_data *bfqd, /* +1 for bfqq entity, root cgroup not included */ depth = bfqg_to_blkg(bfqq_group(bfqq))->blkcg->css.cgroup->level + 1; if (depth > alloc_depth) { - spin_unlock_irq(&bfqd->lock); + elevator_unlock_irq(bfqd->queue->elevator); if (entities != inline_entities) kfree(entities); entities = kmalloc_array(depth, sizeof(*entities), GFP_NOIO); @@ -661,7 +661,7 @@ static bool bfqq_request_over_limit(struct bfq_data *bfqd, } } out: - spin_unlock_irq(&bfqd->lock); + elevator_unlock_irq(bfqd->queue->elevator); if (entities != inline_entities) kfree(entities); return ret; @@ -2215,7 +2215,7 @@ static void bfq_add_request(struct request *rq) bfq_log_bfqq(bfqd, bfqq, "add_request %d", rq_is_sync(rq)); bfqq->queued[rq_is_sync(rq)]++; /* - * Updating of 'bfqd->queued' is protected by 'bfqd->lock', however, it + * Updating of 'bfqd->queued' is protected by elevator lock, however, it * may be read without holding the lock in bfq_has_work(). */ WRITE_ONCE(bfqd->queued, bfqd->queued + 1); @@ -2395,7 +2395,7 @@ static void bfq_remove_request(struct request_queue *q, list_del_init(&rq->queuelist); bfqq->queued[sync]--; /* - * Updating of 'bfqd->queued' is protected by 'bfqd->lock', however, it + * Updating of 'bfqd->queued' is protected by elevator lock, however, it * may be read without holding the lock in bfq_has_work(). */ WRITE_ONCE(bfqd->queued, bfqd->queued - 1); @@ -2452,7 +2452,7 @@ static bool bfq_bio_merge(struct request_queue *q, struct bio *bio, struct request *free = NULL; bool ret; - spin_lock_irq(&bfqd->lock); + elevator_lock_irq(q->elevator); if (bic) { /* @@ -2470,7 +2470,7 @@ static bool bfq_bio_merge(struct request_queue *q, struct bio *bio, ret = blk_mq_sched_try_merge(q, bio, nr_segs, &free); - spin_unlock_irq(&bfqd->lock); + elevator_unlock_irq(q->elevator); if (free) blk_mq_free_request(free); @@ -2645,7 +2645,7 @@ static void bfq_end_wr(struct bfq_data *bfqd) struct bfq_queue *bfqq; int i; - spin_lock_irq(&bfqd->lock); + elevator_lock_irq(bfqd->queue->elevator); for (i = 0; i < bfqd->num_actuators; i++) { list_for_each_entry(bfqq, &bfqd->active_list[i], bfqq_list) @@ -2655,7 +2655,7 @@ static void bfq_end_wr(struct bfq_data *bfqd) bfq_bfqq_end_wr(bfqq); bfq_end_wr_async(bfqd); - spin_unlock_irq(&bfqd->lock); + elevator_unlock_irq(bfqd->queue->elevator); } static sector_t bfq_io_struct_pos(void *io_struct, bool request) @@ -5301,8 +5301,6 @@ static struct request *bfq_dispatch_request(struct blk_mq_hw_ctx *hctx) struct bfq_queue *in_serv_queue; bool waiting_rq, idle_timer_disabled = false; - spin_lock_irq(&bfqd->lock); - in_serv_queue = bfqd->in_service_queue; waiting_rq = in_serv_queue && bfq_bfqq_wait_request(in_serv_queue); @@ -5312,7 +5310,6 @@ static struct request *bfq_dispatch_request(struct blk_mq_hw_ctx *hctx) waiting_rq && !bfq_bfqq_wait_request(in_serv_queue); } - spin_unlock_irq(&bfqd->lock); bfq_update_dispatch_stats(hctx->queue, rq, idle_timer_disabled ? in_serv_queue : NULL, idle_timer_disabled); @@ -5490,9 +5487,9 @@ static void bfq_exit_icq(struct io_cq *icq) * this is the last time these queues are accessed. */ if (bfqd) { - spin_lock_irqsave(&bfqd->lock, flags); + elevator_lock_irqsave(bfqd->queue->elevator, flags); _bfq_exit_icq(bic, bfqd->num_actuators); - spin_unlock_irqrestore(&bfqd->lock, flags); + elevator_unlock_irqrestore(bfqd->queue->elevator, flags); } else { _bfq_exit_icq(bic, BFQ_MAX_ACTUATORS); } @@ -6247,10 +6244,10 @@ static void bfq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, if (!cgroup_subsys_on_dfl(io_cgrp_subsys) && rq->bio) bfqg_stats_update_legacy_io(q, rq); #endif - spin_lock_irq(&bfqd->lock); + elevator_lock_irq(q->elevator); bfqq = bfq_init_rq(rq); if (blk_mq_sched_try_insert_merge(q, rq, &free)) { - spin_unlock_irq(&bfqd->lock); + elevator_unlock_irq(q->elevator); blk_mq_free_requests(&free); return; } @@ -6283,7 +6280,7 @@ static void bfq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq, * merge). */ cmd_flags = rq->cmd_flags; - spin_unlock_irq(&bfqd->lock); + elevator_unlock_irq(q->elevator); bfq_update_insert_stats(q, bfqq, idle_timer_disabled, cmd_flags); @@ -6664,7 +6661,7 @@ static void bfq_finish_requeue_request(struct request *rq) rq->io_start_time_ns, rq->cmd_flags); - spin_lock_irqsave(&bfqd->lock, flags); + elevator_lock_irqsave(bfqd->queue->elevator, flags); if (likely(rq->rq_flags & RQF_STARTED)) { if (rq == bfqd->waited_rq) bfq_update_inject_limit(bfqd, bfqq); @@ -6674,7 +6671,7 @@ static void bfq_finish_requeue_request(struct request *rq) bfqq_request_freed(bfqq); bfq_put_queue(bfqq); RQ_BIC(rq)->requests--; - spin_unlock_irqrestore(&bfqd->lock, flags); + elevator_unlock_irqrestore(bfqd->queue->elevator, flags); /* * Reset private fields. In case of a requeue, this allows @@ -7005,7 +7002,7 @@ bfq_idle_slice_timer_body(struct bfq_data *bfqd, struct bfq_queue *bfqq) enum bfqq_expiration reason; unsigned long flags; - spin_lock_irqsave(&bfqd->lock, flags); + elevator_lock_irqsave(bfqd->queue->elevator, flags); /* * Considering that bfqq may be in race, we should firstly check @@ -7015,7 +7012,7 @@ bfq_idle_slice_timer_body(struct bfq_data *bfqd, struct bfq_queue *bfqq) * been cleared in __bfq_bfqd_reset_in_service func. */ if (bfqq != bfqd->in_service_queue) { - spin_unlock_irqrestore(&bfqd->lock, flags); + elevator_unlock_irqrestore(bfqd->queue->elevator, flags); return; } @@ -7043,7 +7040,7 @@ bfq_idle_slice_timer_body(struct bfq_data *bfqd, struct bfq_queue *bfqq) schedule_dispatch: bfq_schedule_dispatch(bfqd); - spin_unlock_irqrestore(&bfqd->lock, flags); + elevator_unlock_irqrestore(bfqd->queue->elevator, flags); } /* @@ -7156,10 +7153,10 @@ static void bfq_exit_queue(struct elevator_queue *e) hrtimer_cancel(&bfqd->idle_slice_timer); - spin_lock_irq(&bfqd->lock); + elevator_lock_irq(e); list_for_each_entry_safe(bfqq, n, &bfqd->idle_list, bfqq_list) bfq_deactivate_bfqq(bfqd, bfqq, false, false); - spin_unlock_irq(&bfqd->lock); + elevator_unlock_irq(e); for (actuator = 0; actuator < bfqd->num_actuators; actuator++) WARN_ON_ONCE(bfqd->rq_in_driver[actuator]); @@ -7173,10 +7170,10 @@ static void bfq_exit_queue(struct elevator_queue *e) #ifdef CONFIG_BFQ_GROUP_IOSCHED blkcg_deactivate_policy(bfqd->queue->disk, &blkcg_policy_bfq); #else - spin_lock_irq(&bfqd->lock); + elevator_lock_irq(e); bfq_put_async_queues(bfqd, bfqd->root_group); kfree(bfqd->root_group); - spin_unlock_irq(&bfqd->lock); + elevator_unlock_irq(e); #endif blk_stat_disable_accounting(bfqd->queue); @@ -7335,8 +7332,6 @@ static int bfq_init_queue(struct request_queue *q, struct elevator_queue *eq) /* see comments on the definition of next field inside bfq_data */ bfqd->actuator_load_threshold = 4; - spin_lock_init(&bfqd->lock); - /* * The invocation of the next bfq_create_group_hierarchy * function is the head of a chain of function calls @@ -7359,6 +7354,7 @@ static int bfq_init_queue(struct request_queue *q, struct elevator_queue *eq) bfq_init_entity(&bfqd->oom_bfqq.entity, bfqd->root_group); bfq_depth_updated(q); + set_bit(ELEVATOR_FLAG_DISPATCH_IRQ, &eq->flags); /* We dispatch from request queue wide instead of hw queue */ blk_queue_flag_set(QUEUE_FLAG_SQ_SCHED, q); diff --git a/block/bfq-iosched.h b/block/bfq-iosched.h index 34a498e6b2a5..7935663988c3 100644 --- a/block/bfq-iosched.h +++ b/block/bfq-iosched.h @@ -795,8 +795,6 @@ struct bfq_data { /* fallback dummy bfqq for extreme OOM conditions */ struct bfq_queue oom_bfqq; - spinlock_t lock; - /* * bic associated with the task issuing current bio for * merging. This and the next field are used as a support to -- 2.39.2