mirror of https://gitee.com/openkylin/libvirt.git
cgroup: Enable cgroup hierarchy for blkio cgroup
Enable cgroup hierarchy for blkio cgroup Acked-by: Daniel P. Berrange <berrange@redhat.com> Signed-off-by: Gui Jianfeng <guijianfeng@cn.fujitsu.com>
This commit is contained in:
parent
fbaed1a714
commit
b58241a690
1
AUTHORS
1
AUTHORS
|
@ -152,6 +152,7 @@ Patches have also been contributed by:
|
|||
Alon Levy <alevy@redhat.com>
|
||||
Hero Phương <herophuong93@gmail.com>
|
||||
Zdenek Styblik <stybla@turnovfree.net>
|
||||
Gui Jianfeng <guijianfeng@cn.fujitsu.com>
|
||||
|
||||
[....send patches to get your name here....]
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
VIR_ENUM_IMPL(virCgroupController, VIR_CGROUP_CONTROLLER_LAST,
|
||||
"cpu", "cpuacct", "cpuset", "memory", "devices",
|
||||
"freezer");
|
||||
"freezer", "blkio");
|
||||
|
||||
struct virCgroupController {
|
||||
int type;
|
||||
|
|
|
@ -22,6 +22,7 @@ enum {
|
|||
VIR_CGROUP_CONTROLLER_MEMORY,
|
||||
VIR_CGROUP_CONTROLLER_DEVICES,
|
||||
VIR_CGROUP_CONTROLLER_FREEZER,
|
||||
VIR_CGROUP_CONTROLLER_BLKIO,
|
||||
|
||||
VIR_CGROUP_CONTROLLER_LAST
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue