diff options
author | Paolo Valente <paolo.valente@linaro.org> | 2020-02-03 13:40:57 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-02-03 16:58:15 +0300 |
commit | 33a16a9804688b2f4c4281ec31bc393ef2645ae4 (patch) | |
tree | d0582697320c2a862c429649d31dcffaa0346b66 /block/bfq-iosched.c | |
parent | ecedd3d7e19911ab8fe42f17b77c0a30fe7f4db3 (diff) | |
download | linux-33a16a9804688b2f4c4281ec31bc393ef2645ae4.tar.xz |
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.c | 2 |
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); } |