698723
From 4e589237979fdf90af38d466abd7fcd852356f02 Mon Sep 17 00:00:00 2001
698723
From: Kai Krakow <kai@kaishome.de>
698723
Date: Sat, 17 Aug 2019 02:33:43 +0200
698723
Subject: [PATCH] cgroup: Also set io.bfq.weight
698723
698723
Current kernels with BFQ scheduler do not yet set their IO weight
698723
through "io.weight" but through "io.bfq.weight" (using a slightly
698723
different interface supporting only default weights, not per-device
698723
weights). This commit enables "IOWeight=" to just to that.
698723
698723
This patch may be dropped at some time later.
698723
698723
Github-Link: https://github.com/systemd/systemd/issues/7057
698723
Signed-off-by: Kai Krakow <kai@kaishome.de>
698723
698723
(cherry picked from commit 21221ce1ce9a572e82d46d80692afd65c224fc50)
698723
698723
Related: #1927290
698723
---
698723
 src/core/cgroup.c | 8 ++++++++
698723
 1 file changed, 8 insertions(+)
698723
698723
diff --git a/src/core/cgroup.c b/src/core/cgroup.c
698723
index 71e30fd4db..f02cc31c6e 100644
698723
--- a/src/core/cgroup.c
698723
+++ b/src/core/cgroup.c
698723
@@ -984,6 +984,14 @@ static void cgroup_context_apply(
698723
                                 log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
698723
                                               "Failed to set io.weight: %m");
698723
 
698723
+                        /* FIXME: drop this when distro kernels properly support BFQ through "io.weight"
698723
+                         * See also: https://github.com/systemd/systemd/pull/13335 */
698723
+                        xsprintf(buf, "%" PRIu64 "\n", weight);
698723
+                        r = cg_set_attribute("io", path, "io.bfq.weight", buf);
698723
+                        if (r < 0)
698723
+                                log_unit_full(u, IN_SET(r, -ENOENT, -EROFS, -EACCES) ? LOG_DEBUG : LOG_WARNING, r,
698723
+                                              "Failed to set io.bfq.weight: %m");
698723
+
698723
                         if (has_io) {
698723
                                 CGroupIODeviceWeight *w;
698723