BPF List
 help / color / mirror / Atom feed
From: Yonghong Song <yhs@fb.com>
To: Hengqi Chen <hengqi.chen@gmail.com>, <bpf@vger.kernel.org>
Cc: <ast@kernel.org>, <daniel@iogearbox.net>, <andrii@kernel.org>,
	<john.fastabend@gmail.com>
Subject: Re: [PATCH] selftests/bpf: Test btf__load_vmlinux_btf/btf__load_module_btf APIs
Date: Sun, 1 Aug 2021 19:44:09 -0700	[thread overview]
Message-ID: <ac1139ff-0680-0aae-550d-3222fb4c4710@fb.com> (raw)
In-Reply-To: <20210731143244.784959-1-hengqi.chen@gmail.com>



On 7/31/21 7:32 AM, Hengqi Chen wrote:
> Add test for btf__load_vmlinux_btf/btf__load_module_btf APIs. It first
> checks that if btrfs module BTF exists, if yes, load module BTF and
> check symbol existence.
> 
> Signed-off-by: Hengqi Chen <hengqi.chen@gmail.com>
> ---
>   .../selftests/bpf/prog_tests/btf_module.c     | 31 +++++++++++++++++++
>   1 file changed, 31 insertions(+)
>   create mode 100644 tools/testing/selftests/bpf/prog_tests/btf_module.c
> 
> diff --git a/tools/testing/selftests/bpf/prog_tests/btf_module.c b/tools/testing/selftests/bpf/prog_tests/btf_module.c
> new file mode 100644
> index 000000000000..cad1314e3356
> --- /dev/null
> +++ b/tools/testing/selftests/bpf/prog_tests/btf_module.c
> @@ -0,0 +1,31 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/* Copyright (c) 2021 Hengqi Chen */
> +
> +#include <test_progs.h>
> +#include <bpf/btf.h>
> +
> +static const char *module_path = "/sys/kernel/btf/btrfs";
> +static const char *module_name = "btrfs";
> +
> +void test_btf_module()
> +{
> +	struct btf *vmlinux_btf, *module_btf;
> +	__s32 type_id;
> +
> +	if (access(module_path, F_OK))
> +		return;
> +
> +	vmlinux_btf = btf__load_vmlinux_btf();
> +	if (!ASSERT_OK_PTR(vmlinux_btf, "could not load vmlinux BTF"))
> +		return;
> +
> +	module_btf = btf__load_module_btf(module_name, vmlinux_btf);
> +	if (!ASSERT_OK_PTR(module_btf, "could not load module BTF"))
> +		return;

Should we do `btf__free(vmlinux_btf)` before `return`?
 From implementation perspective, maybe use "goto" so we have one
place to do `btf__free(vmlinux_btf)`.

> +
> +	type_id = btf__find_by_name(module_btf, "btrfs_file_open");
> +	ASSERT_GT(type_id, 0, "func btrfs_file_open not found");
> +
> +	btf__free(module_btf);
> +	btf__free(vmlinux_btf);
> +}
> 

  reply	other threads:[~2021-08-02  2:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-31 14:32 [PATCH] selftests/bpf: Test btf__load_vmlinux_btf/btf__load_module_btf APIs Hengqi Chen
2021-08-02  2:44 ` Yonghong Song [this message]
2021-08-02 15:50   ` Hengqi Chen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ac1139ff-0680-0aae-550d-3222fb4c4710@fb.com \
    --to=yhs@fb.com \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=hengqi.chen@gmail.com \
    --cc=john.fastabend@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox