mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
block, bfq: merge bfq_release_process_ref() into bfq_put_cooperator()
Because bfq_put_cooperator() is always followed by bfq_release_process_ref(). Signed-off-by: Yu Kuai <yukuai3@huawei.com> Link: https://lore.kernel.org/r/20240909134154.954924-4-yukuai1@huaweicloud.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
73aeab3735
commit
bc3b1e9e7c
@ -736,7 +736,6 @@ static void bfq_sync_bfqq_move(struct bfq_data *bfqd,
|
|||||||
*/
|
*/
|
||||||
bfq_put_cooperator(sync_bfqq);
|
bfq_put_cooperator(sync_bfqq);
|
||||||
bic_set_bfqq(bic, NULL, true, act_idx);
|
bic_set_bfqq(bic, NULL, true, act_idx);
|
||||||
bfq_release_process_ref(bfqd, sync_bfqq);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5434,6 +5434,8 @@ void bfq_put_cooperator(struct bfq_queue *bfqq)
|
|||||||
bfq_put_queue(__bfqq);
|
bfq_put_queue(__bfqq);
|
||||||
__bfqq = next;
|
__bfqq = next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bfq_release_process_ref(bfqq->bfqd, bfqq);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bfq_exit_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq)
|
static void bfq_exit_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq)
|
||||||
@ -5446,8 +5448,6 @@ static void bfq_exit_bfqq(struct bfq_data *bfqd, struct bfq_queue *bfqq)
|
|||||||
bfq_log_bfqq(bfqd, bfqq, "exit_bfqq: %p, %d", bfqq, bfqq->ref);
|
bfq_log_bfqq(bfqd, bfqq, "exit_bfqq: %p, %d", bfqq, bfqq->ref);
|
||||||
|
|
||||||
bfq_put_cooperator(bfqq);
|
bfq_put_cooperator(bfqq);
|
||||||
|
|
||||||
bfq_release_process_ref(bfqd, bfqq);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bfq_exit_icq_bfqq(struct bfq_io_cq *bic, bool is_sync,
|
static void bfq_exit_icq_bfqq(struct bfq_io_cq *bic, bool is_sync,
|
||||||
@ -6734,8 +6734,6 @@ bfq_split_bfqq(struct bfq_io_cq *bic, struct bfq_queue *bfqq)
|
|||||||
bic_set_bfqq(bic, NULL, true, bfqq->actuator_idx);
|
bic_set_bfqq(bic, NULL, true, bfqq->actuator_idx);
|
||||||
|
|
||||||
bfq_put_cooperator(bfqq);
|
bfq_put_cooperator(bfqq);
|
||||||
|
|
||||||
bfq_release_process_ref(bfqq->bfqd, bfqq);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user