From a35fcc8b3fc340a6b874440b2a87e155c807ece5 Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Thu, 12 Dec 2024 02:54:13 +0000 Subject: automatic import of systemd --- keep-weight-consistent-with-the-set-value.patch | 36 +++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 keep-weight-consistent-with-the-set-value.patch (limited to 'keep-weight-consistent-with-the-set-value.patch') diff --git a/keep-weight-consistent-with-the-set-value.patch b/keep-weight-consistent-with-the-set-value.patch new file mode 100644 index 0000000..24c3e99 --- /dev/null +++ b/keep-weight-consistent-with-the-set-value.patch @@ -0,0 +1,36 @@ +From 7424b6c0f38d4a32fd96e74d7078707c026c6c66 Mon Sep 17 00:00:00 2001 +From: wangyuhang +Date: Thu, 9 Jun 2022 20:10:50 +0800 +Subject: [PATCH] keep weight consistent with the set value + +--- + src/core/cgroup.c | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +diff --git a/src/core/cgroup.c b/src/core/cgroup.c +index 4cac3f6..f6ae2ab 100644 +--- a/src/core/cgroup.c ++++ b/src/core/cgroup.c +@@ -1392,7 +1392,8 @@ static void set_io_weight(Unit *u, uint64_t weight) { + + assert(u); + +- (void) set_bfq_weight(u, "io", makedev(0, 0), weight); ++ xsprintf(buf, "%" PRIu64 "\n", weight); ++ (void) set_attribute_and_warn(u, "io", "io.bfq.weight", buf); + + xsprintf(buf, "default %" PRIu64 "\n", weight); + (void) set_attribute_and_warn(u, "io", "io.weight", buf); +@@ -1403,7 +1404,8 @@ static void set_blkio_weight(Unit *u, uint64_t weight) { + + assert(u); + +- (void) set_bfq_weight(u, "blkio", makedev(0, 0), weight); ++ xsprintf(buf, "%" PRIu64 "\n", weight); ++ (void) set_attribute_and_warn(u, "blkio", "blkio.bfq.weight", buf); + + xsprintf(buf, "%" PRIu64 "\n", weight); + (void) set_attribute_and_warn(u, "blkio", "blkio.weight", buf); +-- +2.33.0 + -- cgit v1.2.3