cgroup: Also set blkio.bfq.weight

Commit [1] added a workaround when unified cgroups are used but missed
legacy cgroups where there is the same issue.

[1] <2dbc45aea7>

Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
This commit is contained in:
Pavel Hrdina 2020-11-25 09:05:36 +01:00 committed by Luca Boccassi
parent a6e5ad8925
commit 35e7a62ca3
1 changed files with 5 additions and 0 deletions

View File

@ -1244,6 +1244,11 @@ static void cgroup_context_apply(
xsprintf(buf, "%" PRIu64 "\n", weight);
(void) set_attribute_and_warn(u, "blkio", "blkio.weight", buf);
/* FIXME: drop this when distro kernels properly support BFQ through "blkio.weight"
* See also: https://github.com/systemd/systemd/pull/13335 */
xsprintf(buf, "%" PRIu64 "\n", weight);
(void) set_attribute_and_warn(u, "blkio", "blkio.bfq.weight", buf);
if (has_io) {
CGroupIODeviceWeight *w;