mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 08:03:01 +09:00
block, bfq: don't declare 'bfqd' as type 'void *' in bfq_group
Prevent unnecessary format conversion for bfqg->bfqd in multiple places. Signed-off-by: Yu Kuai <yukuai3@huawei.com> Reviewed-by: Jan Kara <jack@suse.cz> Acked-by: Paolo Valente <paolo.valente@unimore.it> Link: https://lore.kernel.org/r/20221102022542.3621219-6-yukuai1@huaweicloud.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
@@ -222,9 +222,8 @@ static void bfq_inc_active_entities(struct bfq_entity *entity)
|
||||
{
|
||||
struct bfq_sched_data *sd = entity->sched_data;
|
||||
struct bfq_group *bfqg = container_of(sd, struct bfq_group, sched_data);
|
||||
struct bfq_data *bfqd = (struct bfq_data *)bfqg->bfqd;
|
||||
|
||||
if (bfqg != bfqd->root_group)
|
||||
if (bfqg != bfqg->bfqd->root_group)
|
||||
bfqg->active_entities++;
|
||||
}
|
||||
|
||||
@@ -232,9 +231,8 @@ static void bfq_dec_active_entities(struct bfq_entity *entity)
|
||||
{
|
||||
struct bfq_sched_data *sd = entity->sched_data;
|
||||
struct bfq_group *bfqg = container_of(sd, struct bfq_group, sched_data);
|
||||
struct bfq_data *bfqd = (struct bfq_data *)bfqg->bfqd;
|
||||
|
||||
if (bfqg != bfqd->root_group)
|
||||
if (bfqg != bfqg->bfqd->root_group)
|
||||
bfqg->active_entities--;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user