From: Nick Rosbrook Date: Tue, 14 Jun 2022 19:25:50 +0000 (-0400) Subject: core/cgroup: allow setting oomd xattrs from user manager X-Git-Tag: v252-rc1~323^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b1cd8ed42094f64a201c225be8d2c648f9067444;p=thirdparty%2Fsystemd.git core/cgroup: allow setting oomd xattrs from user manager The extended attributes 'user.oomd_avoid' and 'user.oomd_omit' are used to store the setting of the ManagedOOMPrefernce property. Since these are user extended attributes, the access permissions are defined by the file permissions, and there is no need to guard this from user managers. --- diff --git a/src/core/cgroup.c b/src/core/cgroup.c index 746c7cdfed0..c945f76abc3 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -783,6 +783,9 @@ static void cgroup_xattr_apply(Unit *u) { assert(u); + /* The 'user.*' xattrs can be set from a user manager. */ + cgroup_oomd_xattr_apply(u, u->cgroup_path); + if (!MANAGER_IS_SYSTEM(u->manager)) return; @@ -809,8 +812,6 @@ static void cgroup_xattr_apply(Unit *u) { else unit_remove_xattr_graceful(u, NULL, xn); } - - cgroup_oomd_xattr_apply(u, u->cgroup_path); } static int lookup_block_device(const char *p, dev_t *ret) {