diff mbox series

[v2,bpf-next,1/4] libbpf: migrate internal use of bpf_program__get_prog_info_linear

Message ID 20211011082031.4148337-2-davemarchevsky@fb.com (mailing list archive)
State Accepted
Delegated to: BPF
Headers show
Series libbpf: deprecate bpf_program__get_prog_info_linear | expand

Checks

Context Check Description
bpf/vmtest-bpf-next-PR success PR summary
netdev/cover_letter success Series has a cover letter
netdev/fixes_present success Fixes tag not required for -next series
netdev/patch_count success Link
netdev/tree_selection success Clearly marked for bpf-next
netdev/subject_prefix success Link
netdev/cc_maintainers warning 5 maintainers not CCed: yhs@fb.com john.fastabend@gmail.com kafai@fb.com netdev@vger.kernel.org kpsingh@kernel.org
netdev/source_inline success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/module_param success Was 0 now: 0
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/verify_fixes success No Fixes tag
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 39 lines checked
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/header_inline success No static functions without inline keyword in header files
bpf/vmtest-bpf-next success VM_Test

Commit Message

Dave Marchevsky Oct. 11, 2021, 8:20 a.m. UTC
In preparation for bpf_program__get_prog_info_linear, move the single
use in libbpf to call bpf_obj_get_info_by_fd directly.

Signed-off-by: Dave Marchevsky <davemarchevsky@fb.com>
---
 tools/lib/bpf/libbpf.c | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

Comments

Andrii Nakryiko Oct. 20, 2021, 5:36 p.m. UTC | #1
On Mon, Oct 11, 2021 at 1:20 AM Dave Marchevsky <davemarchevsky@fb.com> wrote:
>
> In preparation for bpf_program__get_prog_info_linear, move the single

for bpf_program__get_prog_info_linear *deprecation* ? fixed it up while applying

> use in libbpf to call bpf_obj_get_info_by_fd directly.
>
> Signed-off-by: Dave Marchevsky <davemarchevsky@fb.com>
> ---

I've applied this patch for now, as it is pretty independent (and I've
already fixed it up already and didn't want to lose that :) I hope you
don't mind.

>  tools/lib/bpf/libbpf.c | 15 ++++++---------
>  1 file changed, 6 insertions(+), 9 deletions(-)
>
> diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c
> index ed313fd491bd..8b86c4831aa8 100644
> --- a/tools/lib/bpf/libbpf.c
> +++ b/tools/lib/bpf/libbpf.c
> @@ -8459,26 +8459,24 @@ int libbpf_find_vmlinux_btf_id(const char *name,
>
>  static int libbpf_find_prog_btf_id(const char *name, __u32 attach_prog_fd)
>  {
> -       struct bpf_prog_info_linear *info_linear;
> -       struct bpf_prog_info *info;
> +       struct bpf_prog_info info = {};
> +       __u32 info_len = sizeof(info);
>         struct btf *btf;
>         int err;
>
> -       info_linear = bpf_program__get_prog_info_linear(attach_prog_fd, 0);
> -       err = libbpf_get_error(info_linear);
> +       err = bpf_obj_get_info_by_fd(attach_prog_fd, &info, &info_len);
>         if (err) {
> -               pr_warn("failed get_prog_info_linear for FD %d\n",
> +               pr_warn("failed bpf_obj_get_info_by_fd for FD %d\n",

I've also added err code into warn message here

>                         attach_prog_fd);
>                 return err;
>         }
>
>         err = -EINVAL;
> -       info = &info_linear->info;
> -       if (!info->btf_id) {
> +       if (!info.btf_id) {
>                 pr_warn("The target program doesn't have BTF\n");
>                 goto out;
>         }
> -       btf = btf__load_from_kernel_by_id(info->btf_id);
> +       btf = btf__load_from_kernel_by_id(info.btf_id);
>         if (libbpf_get_error(btf)) {
>                 pr_warn("Failed to get BTF of the program\n");

and here




>                 goto out;
> @@ -8490,7 +8488,6 @@ static int libbpf_find_prog_btf_id(const char *name, __u32 attach_prog_fd)
>                 goto out;
>         }
>  out:
> -       free(info_linear);
>         return err;
>  }
>
> --
> 2.30.2
>
diff mbox series

Patch

diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c
index ed313fd491bd..8b86c4831aa8 100644
--- a/tools/lib/bpf/libbpf.c
+++ b/tools/lib/bpf/libbpf.c
@@ -8459,26 +8459,24 @@  int libbpf_find_vmlinux_btf_id(const char *name,
 
 static int libbpf_find_prog_btf_id(const char *name, __u32 attach_prog_fd)
 {
-	struct bpf_prog_info_linear *info_linear;
-	struct bpf_prog_info *info;
+	struct bpf_prog_info info = {};
+	__u32 info_len = sizeof(info);
 	struct btf *btf;
 	int err;
 
-	info_linear = bpf_program__get_prog_info_linear(attach_prog_fd, 0);
-	err = libbpf_get_error(info_linear);
+	err = bpf_obj_get_info_by_fd(attach_prog_fd, &info, &info_len);
 	if (err) {
-		pr_warn("failed get_prog_info_linear for FD %d\n",
+		pr_warn("failed bpf_obj_get_info_by_fd for FD %d\n",
 			attach_prog_fd);
 		return err;
 	}
 
 	err = -EINVAL;
-	info = &info_linear->info;
-	if (!info->btf_id) {
+	if (!info.btf_id) {
 		pr_warn("The target program doesn't have BTF\n");
 		goto out;
 	}
-	btf = btf__load_from_kernel_by_id(info->btf_id);
+	btf = btf__load_from_kernel_by_id(info.btf_id);
 	if (libbpf_get_error(btf)) {
 		pr_warn("Failed to get BTF of the program\n");
 		goto out;
@@ -8490,7 +8488,6 @@  static int libbpf_find_prog_btf_id(const char *name, __u32 attach_prog_fd)
 		goto out;
 	}
 out:
-	free(info_linear);
 	return err;
 }