Re: [PATCH v2 23/23] bpf: selftests: PSI struct ops test
From: Alexei Starovoitov
Date: Tue Oct 28 2025 - 13:31:06 EST
On Tue, Oct 28, 2025 at 10:13 AM Roman Gushchin
<roman.gushchin@xxxxxxxxx> wrote:
> >> +
> >> +/* cgroup which will be deleted */
> >> +u64 deleted_cgroup_id;
> >> +
> >> +/* cgroup which will be created */
> >> +u64 new_cgroup_id;
> >> +
> >> +/* cgroup which was deleted */
> >> +u64 deleted_cgroup_id;
> >> ^^^^^^^^^^^^^^^^^^
> >
> > Is deleted_cgroup_id intentionally declared twice here? This appears
> > to be a duplicate global variable declaration - the same variable is
> > declared at line 13 with comment "cgroup which will be deleted" and
> > again at line 19 with comment "cgroup which was deleted".
>
> Correct, fixed.
wow. TIL.
I didn't know that C allows such double variable definition
outside of function bodies.
Even with -Wall gcc/clang don't warn about it.