diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-07-11 20:40:18 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-07-11 20:40:18 +0200 |
commit | 8e7076caae32a560a11c1643b53fc4f12db4a6b1 (patch) | |
tree | 3d9f831985cd2042d40c3e29cd43b7d175229809 /src/core/cgroup.c | |
parent | 554604b3073467af75dc94fac9e2343148603289 (diff) |
cgroup: split out per-device BlockIOWeight= setting into BlockIODeviceWeight=
This way we can nicely map the configuration directive to properties and
back, without requiring two different signatures for the same property.
Diffstat (limited to 'src/core/cgroup.c')
-rw-r--r-- | src/core/cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cgroup.c b/src/core/cgroup.c index d0f36cb18e..5a1c3adacd 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -114,7 +114,7 @@ void cgroup_context_dump(CGroupContext *c, FILE* f, const char *prefix) { LIST_FOREACH(device_weights, w, c->blockio_device_weights) fprintf(f, - "%sBlockIOWeight=%s %lu", + "%sBlockIODeviceWeight=%s %lu", prefix, w->path, w->weight); |