Symbol: cap_enable_effective
tools/testing/selftests/bpf/cap_helpers.h
17
int cap_enable_effective(__u64 caps, __u64 *old_caps);
tools/testing/selftests/bpf/prog_tests/bind_perm.c
86
ASSERT_OK(cap_enable_effective(net_bind_svc_cap, NULL),
tools/testing/selftests/bpf/prog_tests/deny_namespace.c
54
cap_enable_effective(cap_mask, &old_caps);
tools/testing/selftests/bpf/prog_tests/deny_namespace.c
63
cap_enable_effective(cap_mask, NULL);
tools/testing/selftests/bpf/prog_tests/deny_namespace.c
76
cap_enable_effective(cap_mask, NULL);
tools/testing/selftests/bpf/prog_tests/kfunc_call.c
311
cap_enable_effective(save_caps, NULL);
tools/testing/selftests/bpf/prog_tests/tc_bpf.c
405
ret = cap_enable_effective(1ULL << CAP_BPF | 1ULL << CAP_NET_ADMIN, &caps);
tools/testing/selftests/bpf/prog_tests/tc_bpf.c
420
cap_enable_effective(caps, NULL);
tools/testing/selftests/bpf/prog_tests/token.c
74
return cap_enable_effective(old_caps, NULL);
tools/testing/selftests/bpf/prog_tests/unpriv_bpf_disabled.c
289
cap_enable_effective(save_caps, NULL);
tools/testing/selftests/bpf/prog_tests/verifier.c
155
err = cap_enable_effective(old_caps, NULL);
tools/testing/selftests/bpf/test_loader.c
1039
err = cap_enable_effective(caps->old_caps, NULL);
tools/testing/selftests/bpf/test_loader.c
1351
err = cap_enable_effective(subspec->caps, NULL);
tools/testing/selftests/bpf/test_verifier.c
1241
err = cap_enable_effective(ADMIN_CAPS, NULL);
tools/testing/selftests/bpf/test_verifier.c
880
if (cap_enable_effective(1ULL << CAP_SYS_ADMIN, &caps))