diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-05-20 18:53:11 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-05-20 18:53:11 +0200 |
commit | f9e26ecc48dc87f51e75ce8aa58ef9bdae8ce0f0 (patch) | |
tree | e88eccf7c3ad07de0c0f848b6e5d7637baf867ad /src/shared | |
parent | 51e0b250779d28eaffff886b5a3cb208c6813a40 (diff) | |
parent | 538b48524cf48afc299ab78690bc03c18af67ede (diff) |
Merge pull request #3290 from htejun/cgroup2-io-compat
Implement compat translation between IO* and BlockIO* settings
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/bus-unit-util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shared/bus-unit-util.c b/src/shared/bus-unit-util.c index 9431dad411..f6559cd854 100644 --- a/src/shared/bus-unit-util.c +++ b/src/shared/bus-unit-util.c @@ -284,8 +284,7 @@ int bus_append_unit_property_assignment(sd_bus_message *m, const char *assignmen r = sd_bus_message_append(m, "v", "a(ss)", 1, path, rwm); } - } else if (STR_IN_SET(field, "IOReadBandwidthMax", "IOWriteBandwidthMax", - "BlockIOReadBandwidth", "BlockIOWriteBandwidth")) { + } else if (cgroup_io_limit_type_from_string(field) >= 0 || STR_IN_SET(field, "BlockIOReadBandwidth", "BlockIOWriteBandwidth")) { if (isempty(eq)) r = sd_bus_message_append(m, "v", "a(st)", 0); |