mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-27 00:04:47 +08:00
e00aca65e6
LIBBPF_OPTS is implemented as a mix of field declaration and memset + assignment. This makes it neither variable declaration nor purely statements, which is a problem, because you can't mix it with either other variable declarations nor other function statements, because C90 compiler mode emits warning on mixing all that together. This patch changes LIBBPF_OPTS into a strictly declaration of variable and solves this problem, as can be seen in case of bpftool, which previously would emit compiler warning, if done this way (LIBBPF_OPTS as part of function variables declaration block). This patch also renames LIBBPF_OPTS into DECLARE_LIBBPF_OPTS to follow kernel convention for similar macros more closely. v1->v2: - rename LIBBPF_OPTS into DECLARE_LIBBPF_OPTS (Jakub Sitnicki). Signed-off-by: Andrii Nakryiko <andriin@fb.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Toke Høiland-Jørgensen <toke@redhat.com> Link: https://lore.kernel.org/bpf/20191022172100.3281465-1-andriin@fb.com
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <test_progs.h>
|
|
|
|
void test_reference_tracking(void)
|
|
{
|
|
const char *file = "test_sk_lookup_kern.o";
|
|
const char *obj_name = "ref_track";
|
|
DECLARE_LIBBPF_OPTS(bpf_object_open_opts, open_opts,
|
|
.object_name = obj_name,
|
|
.relaxed_maps = true,
|
|
);
|
|
struct bpf_object *obj;
|
|
struct bpf_program *prog;
|
|
__u32 duration = 0;
|
|
int err = 0;
|
|
|
|
obj = bpf_object__open_file(file, &open_opts);
|
|
if (CHECK_FAIL(IS_ERR(obj)))
|
|
return;
|
|
|
|
if (CHECK(strcmp(bpf_object__name(obj), obj_name), "obj_name",
|
|
"wrong obj name '%s', expected '%s'\n",
|
|
bpf_object__name(obj), obj_name))
|
|
goto cleanup;
|
|
|
|
bpf_object__for_each_program(prog, obj) {
|
|
const char *title;
|
|
|
|
/* Ignore .text sections */
|
|
title = bpf_program__title(prog, false);
|
|
if (strstr(title, ".text") != NULL)
|
|
continue;
|
|
|
|
if (!test__start_subtest(title))
|
|
continue;
|
|
|
|
/* Expect verifier failure if test name has 'fail' */
|
|
if (strstr(title, "fail") != NULL) {
|
|
libbpf_print_fn_t old_print_fn;
|
|
|
|
old_print_fn = libbpf_set_print(NULL);
|
|
err = !bpf_program__load(prog, "GPL", 0);
|
|
libbpf_set_print(old_print_fn);
|
|
} else {
|
|
err = bpf_program__load(prog, "GPL", 0);
|
|
}
|
|
CHECK(err, title, "\n");
|
|
}
|
|
|
|
cleanup:
|
|
bpf_object__close(obj);
|
|
}
|