mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-04 04:02:26 +00:00
bfq: Avoid false marking of bic as stably merged
bfq_setup_cooperator() can mark bic as stably merged even though it
decides to not merge its bfqqs (when bfq_setup_merge() returns NULL).
Make sure to mark bic as stably merged only if we are really going to
merge bfqqs.
CC: stable@vger.kernel.org
Tested-by: "yukuai (C)" <yukuai3@huawei.com>
Fixes: 430a67f9d6
("block, bfq: merge bursts of newly-created queues")
Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20220401102752.8599-1-jack@suse.cz
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
852ad96cb0
commit
70456e5210
@ -2895,9 +2895,12 @@ bfq_setup_cooperator(struct bfq_data *bfqd, struct bfq_queue *bfqq,
|
||||
struct bfq_queue *new_bfqq =
|
||||
bfq_setup_merge(bfqq, stable_merge_bfqq);
|
||||
|
||||
bic->stably_merged = true;
|
||||
if (new_bfqq && new_bfqq->bic)
|
||||
new_bfqq->bic->stably_merged = true;
|
||||
if (new_bfqq) {
|
||||
bic->stably_merged = true;
|
||||
if (new_bfqq->bic)
|
||||
new_bfqq->bic->stably_merged =
|
||||
true;
|
||||
}
|
||||
return new_bfqq;
|
||||
} else
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user