]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
lib/bpf: fix verbose flag when using libbpf
authorPaul Chaignon <paul@isovalent.com>
Thu, 16 Dec 2021 15:33:36 +0000 (16:33 +0100)
committerStephen Hemminger <stephen@networkplumber.org>
Fri, 17 Dec 2021 23:21:19 +0000 (15:21 -0800)
Since commit 6d61a2b55799 ("lib: add libbpf support"), passing the
verbose flag to tc filter doesn't dump the verifier logs anymore in case
of successful loading.

This commit fixes it by setting the log_level attribute before loading.
To that end, we need to call bpf_object__load_xattr directly instead of
relying on bpf_object__load.

Fixes: 6d61a2b55799 ("lib: add libbpf support")
Signed-off-by: Paul Chaignon <paul@isovalent.com>
Acked-by: Hangbin Liu <haliu@redhat.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
lib/bpf_libbpf.c

index dbec2cb560ccc0c6977d9e754bcb2f60a94d0dca..50ef16bd4612a5f461fdf89a456aa69c9fb3ea3d 100644 (file)
@@ -246,6 +246,7 @@ static int handle_legacy_maps(struct bpf_object *obj)
 
 static int load_bpf_object(struct bpf_cfg_in *cfg)
 {
+       struct bpf_object_load_attr attr = {};
        struct bpf_program *p, *prog = NULL;
        struct bpf_object *obj;
        char root_path[PATH_MAX];
@@ -302,7 +303,11 @@ static int load_bpf_object(struct bpf_cfg_in *cfg)
        if (ret)
                goto unload_obj;
 
-       ret = bpf_object__load(obj);
+       attr.obj = obj;
+       if (cfg->verbose)
+               attr.log_level = 2;
+
+       ret = bpf_object__load_xattr(&attr);
        if (ret)
                goto unload_obj;