From: Anita Zhang Date: Wed, 21 Oct 2020 08:52:53 +0000 (-0700) Subject: oomd: use ERRNO_IS_NOT_SUPPORTED and ERRNO_IS_PRIVILEGE X-Git-Tag: v247-rc1~14^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=018b6f45483941e70df37661986bae39b0c90849;p=thirdparty%2Fsystemd.git oomd: use ERRNO_IS_NOT_SUPPORTED and ERRNO_IS_PRIVILEGE --- diff --git a/src/oom/test-oomd-util.c b/src/oom/test-oomd-util.c index 38cae9e0342..5e7c1871540 100644 --- a/src/oom/test-oomd-util.c +++ b/src/oom/test-oomd-util.c @@ -57,7 +57,7 @@ static void test_oomd_cgroup_kill(void) { /* If we don't have permissions to set xattrs we're likely in a userns or missing capabilities */ r = cg_set_xattr(SYSTEMD_CGROUP_CONTROLLER, cgroup, "user.oomd_test", "test", 4, 0); - if (IN_SET(r, -EPERM, -ENOTSUP)) + if (ERRNO_IS_PRIVILEGE(r) || ERRNO_IS_NOT_SUPPORTED(r)) return (void) log_tests_skipped("Cannot set user xattrs"); /* Do this twice to also check the increment behavior on the xattrs */