aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/block/bfq-iosched.c
diff options
context:
space:
mode:
authorPaolo Valente <paolo.valente@linaro.org>2020-02-03 11:40:57 +0100
committerJens Axboe <axboe@kernel.dk>2020-02-03 06:58:15 -0700
commit33a16a9804688b2f4c4281ec31bc393ef2645ae4 (patch)
treed0582697320c2a862c429649d31dcffaa0346b66 /block/bfq-iosched.c
parentblock, bfq: get extra ref to prevent a queue from being freed during a group move (diff)
downloadwireguard-linux-33a16a9804688b2f4c4281ec31bc393ef2645ae4.tar.xz
wireguard-linux-33a16a9804688b2f4c4281ec31bc393ef2645ae4.zip
block, bfq: extend incomplete name of field on_st
The flag on_st in the bfq_entity data structure is true if the entity is on a service tree or is in service. Yet the name of the field, confusingly, does not mention the second, very important case. Extend the name to mention the second case too. Tested-by: Oleksandr Natalenko <oleksandr@natalenko.name> Signed-off-by: Paolo Valente <paolo.valente@linaro.org> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/bfq-iosched.c')
-rw-r--r--block/bfq-iosched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/bfq-iosched.c b/block/bfq-iosched.c
index 15dfb0844644..28770ec7c06f 100644
--- a/block/bfq-iosched.c
+++ b/block/bfq-iosched.c
@@ -1059,7 +1059,7 @@ bfq_bfqq_resume_state(struct bfq_queue *bfqq, struct bfq_data *bfqd,
static int bfqq_process_refs(struct bfq_queue *bfqq)
{
- return bfqq->ref - bfqq->allocated - bfqq->entity.on_st -
+ return bfqq->ref - bfqq->allocated - bfqq->entity.on_st_or_in_serv -
(bfqq->weight_counter != NULL);
}