cgroup-util: fix devices controller

Commit efdb0237 accidentally changed the name of the "devices" cgroup
controller to "device".
This commit is contained in:
Martin Pitt 2015-09-08 10:42:22 +02:00
parent e2bf1764fd
commit 5bf8002a3a
1 changed files with 1 additions and 1 deletions

View File

@ -2211,7 +2211,7 @@ static const char *cgroup_controller_table[_CGROUP_CONTROLLER_MAX] = {
[CGROUP_CONTROLLER_CPUACCT] = "cpuacct",
[CGROUP_CONTROLLER_BLKIO] = "blkio",
[CGROUP_CONTROLLER_MEMORY] = "memory",
[CGROUP_CONTROLLER_DEVICE] = "device",
[CGROUP_CONTROLLER_DEVICE] = "devices",
};
DEFINE_STRING_TABLE_LOOKUP(cgroup_controller, CGroupController);