From: Zbigniew Jędrzejewski-Szmek Date: Wed, 18 Jun 2025 12:42:02 +0000 (+0200) Subject: shared/bus-unit-util: fix appending of IODeviceLatencyTargetSec= X-Git-Tag: v258-rc1~183^2~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=411b998da8e042c525a2ffd23e791b7eb0f90a63;p=thirdparty%2Fsystemd.git shared/bus-unit-util: fix appending of IODeviceLatencyTargetSec= --- diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index 4f82d915363..f99ced824f3 100644 --- a/src/shared/bus-unit-util.c +++ b/src/shared/bus-unit-util.c @@ -808,7 +808,7 @@ static int bus_append_cgroup_property(sd_bus_message *m, const char *field, cons const char *field_usec = "IODeviceLatencyTargetUSec"; if (isempty(eq)) - r = sd_bus_message_append(m, "(sv)", field_usec, "a(st)", USEC_INFINITY); + r = sd_bus_message_append(m, "(sv)", field_usec, "a(st)", 0); else { const char *path, *target, *e; usec_t usec;