aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/test_dev_cgroup.c
diff options
context:
space:
mode:
authorStanislav Fomichev <sdf@google.com>2019-01-07 09:46:46 -0800
committerAlexei Starovoitov <ast@kernel.org>2019-01-07 13:15:55 -0800
commita8911d6d5878587767a78c6bde371298ca2a3be3 (patch)
tree85d622fbc4afb974a19887bc1dd2d92f3573816e /tools/testing/selftests/bpf/test_dev_cgroup.c
parentMerge branch 'reject-ptr-scalar-mix' (diff)
downloadlinux-dev-a8911d6d5878587767a78c6bde371298ca2a3be3.tar.xz
linux-dev-a8911d6d5878587767a78c6bde371298ca2a3be3.zip
selftests/bpf: fix incorrect users of create_and_get_cgroup
We have some tests that assume create_and_get_cgroup returns -1 on error which is incorrect (it returns 0 on error). Since fd might be zero in general case, change create_and_get_cgroup to return -1 on error and fix the users that assume 0 on error. Fixes: f269099a7e7a ("tools/bpf: add a selftest for bpf_get_current_cgroup_id() helper") Fixes: 7d2c6cfc5411 ("bpf: use --cgroup in test_suite if supplied") v2: - instead of fixing the uses that assume -1 on error, convert the users that assume 0 on error (fd might be zero in general case) Signed-off-by: Stanislav Fomichev <sdf@google.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to '')
-rw-r--r--tools/testing/selftests/bpf/test_dev_cgroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/test_dev_cgroup.c b/tools/testing/selftests/bpf/test_dev_cgroup.c
index 9c8b50bac7e0..76e4993b7c16 100644
--- a/tools/testing/selftests/bpf/test_dev_cgroup.c
+++ b/tools/testing/selftests/bpf/test_dev_cgroup.c
@@ -43,7 +43,7 @@ int main(int argc, char **argv)
/* Create a cgroup, get fd, and join it */
cgroup_fd = create_and_get_cgroup(TEST_CGROUP);
- if (!cgroup_fd) {
+ if (cgroup_fd < 0) {
printf("Failed to create test cgroup\n");
goto err;
}