On Thu, Dec 21, 2023 at 5:13 PM Alexei Starovoitov <alexei.starovoitov@xxxxxxxxx> wrote: > > On Wed, Dec 20, 2023 at 03:31:25PM -0800, Andrii Nakryiko wrote: > > > > -static int bpf_object__sanitize_and_load_btf(struct bpf_object *obj) > > +static int bpf_object_load_btf(struct bpf_object *obj) > > { > > struct btf *kern_btf = obj->btf; > > bool btf_mandatory, sanitize; > > @@ -8091,10 +8091,10 @@ static int bpf_object_load(struct bpf_object *obj, int extra_log_level, const ch > > err = bpf_object__probe_loading(obj); > > err = err ? : bpf_object__load_vmlinux_btf(obj, false); > > err = err ? : bpf_object__resolve_externs(obj, obj->kconfig); > > - err = err ? : bpf_object__sanitize_and_load_btf(obj); > > err = err ? : bpf_object__sanitize_maps(obj); > > err = err ? : bpf_object__init_kern_struct_ops_maps(obj); > > err = err ? : bpf_object__relocate(obj, obj->btf_custom_path ? : target_btf_path); > > + err = err ? : bpf_object_load_btf(obj); > > Here and in the previous patch: > -bpf_object__create_maps(struct bpf_object *obj) > +static int bpf_object_create_maps(struct bpf_object *obj) > > Let's keep __ convention. No need to deviate for these two methods. > Otherwise above loading sequence looks odd and questions pop on why > one method with single underscore and others are with two. I agree about consistency, but these are internal "methods", and since at least libbpf 1.0 we established a convention that only public APIs will use double-underscore naming. We've been lazily converting old code as we touched it, but I'll just include a pre-patch that will rename all the remaining inconsistently named ones in one go to not have to worry about this going forward. > > pw-bot: cr