summaryrefslogtreecommitdiff
path: root/src/test/test-bpf-foreign-programs.c
diff options
context:
space:
mode:
authoralexlzhu <alexlzhu@fb.com>2021-08-18 16:01:05 -0700
committerLennart Poettering <lennart@poettering.net>2021-10-12 12:48:23 +0200
commit76dc17254f7c78eae2dec2b9b1cfb60657a7b6e7 (patch)
treeeaf61330174b3b5b5647cd11ec6951f5d1609220 /src/test/test-bpf-foreign-programs.c
parentd92681a65e7334297727c3048a3489c32e795e4b (diff)
downloadsystemd-76dc17254f7c78eae2dec2b9b1cfb60657a7b6e7.tar.gz
core: remove refcount for bpf program
Currently ref count of bpf-program is kept in user space. However, the kernel already implements its own ref count. Thus the ref count we keep for bpf-program is redundant. This PR removes ref count for bpf program as part of a task to simplify bpf-program and remove redundancies, which will make the switch to code-compiled BPF programs easier. Part of #19270
Diffstat (limited to 'src/test/test-bpf-foreign-programs.c')
-rw-r--r--src/test/test-bpf-foreign-programs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-bpf-foreign-programs.c b/src/test/test-bpf-foreign-programs.c
index 86e05e23ab..1765dc7a9b 100644
--- a/src/test/test-bpf-foreign-programs.c
+++ b/src/test/test-bpf-foreign-programs.c
@@ -155,7 +155,7 @@ static int pin_programs(Unit *u, CGroupContext *cc, const Test *test_suite, size
assert_se(paths_ret);
for (size_t i = 0; i < test_suite_size; i++) {
- _cleanup_(bpf_program_unrefp) BPFProgram *prog = NULL;
+ _cleanup_(bpf_program_freep) BPFProgram *prog = NULL;
_cleanup_free_ char *str = NULL;
r = bpf_foreign_test_to_string(test_suite[i].attach_type, test_suite[i].bpffs_path, &str);