On Tue, Mar 9, 2021 at 10:50 AM Yonghong Song <yhs@xxxxxx> wrote: > while ((_prog = READ_ONCE(_item->prog))) { \ > - bpf_cgroup_storage_set(_item->cgroup_storage); \ > + if (set_cg_storage) { \ > + bpf_cgroup_storage_set(_item->cgroup_storage); \ > + } \ Extra {} are unnecessary. I removed them while applying. Thanks!