summaryrefslogtreecommitdiff
path: root/src/core/cgroup.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-07-11 20:40:18 +0200
committerLennart Poettering <lennart@poettering.net>2013-07-11 20:40:18 +0200
commit8e7076caae32a560a11c1643b53fc4f12db4a6b1 (patch)
tree3d9f831985cd2042d40c3e29cd43b7d175229809 /src/core/cgroup.c
parent554604b3073467af75dc94fac9e2343148603289 (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.c2
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);