> diff --git a/block/blk-iocost.c b/block/blk-iocost.c
> index a0416927d33d..b4eebe61dca7 100644
> --- a/block/blk-iocost.c
> +++ b/block/blk-iocost.c
[ ... ]
> @@ -3003,7 +3003,7 @@ static void ioc_pd_init(struct blkg_policy_data *pd)
> init_waitqueue_head(&iocg->waitq);
> hrtimer_setup(&iocg->waitq_timer, iocg_waitq_timer_fn, CLOCK_MONOTONIC,
> HRTIMER_MODE_ABS);
>
> - iocg->level = blkg->blkcg->css.cgroup->level;
> + iocg->level = cgroup_level(blkg->blkcg->css.cgroup)
^
Is this missing a semicolon? The line should end with a semicolon to
make this valid C syntax. This will prevent the kernel from building
in the ioc_pd_init() function.
>
> for (tblkg = blkg; tblkg; tblkg = tblkg->parent) {
> struct ioc_gq *tiocg = blkg_to_iocg(tblkg);
---
AI reviewed your patch. Please fix the bug or email reply why it's not a bug.
See: https://github.com/kernel-patches/vmtest/blob/master/ci/claude/README.md
CI run summary: https://github.com/kernel-patches/bpf/actions/runs/20310204023