On Thu, Dec 21, 2023 at 7:18 PM Yonghong Song <yonghong.song@xxxxxxxxx> wrote: > > > Later on, Commit 1fda5bb66ad8 ("bpf: Do not allocate percpu memory > at init stage") moved the non-fix-size percpu memory allocation > to bpf verificaiton stage. Only noticed after already applying and didn't want to force push to fix it up. But in the future please do not break commit one-liner into multiple lines. Commit should be lower case as well. spellcheck is a good idea as well. > + > + for_each_possible_cpu(cpu) { > + cc = per_cpu_ptr(pcc, cpu); > + c = &cc->cache[i]; > + if (cpu == 0 && c->unit_size) > + break; I think this part ensures that repeated bpf_percpu_obj_new() in a bpf prog don't keep prefilling, right? I think it works, but cpu == 0 part is confusing. It will work with just: if (c->unit_size) break; right? > + > + c->unit_size = unit_size; > + c->objcg = objcg; > + c->percpu_size = percpu_size; > + c->tgt = c; > + > + init_refill_work(c); > + prefill_mem_cache(c, cpu); > + } > + > + return 0; > +}