提交 cda8ed06 编写于 作者: P Pavel Hrdina

vircgroup: introduce virCgroupV2BindMount

Signed-off-by: NPavel Hrdina <phrdina@redhat.com>
上级 38411bb8
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#ifdef __linux__ #ifdef __linux__
# include <mntent.h> # include <mntent.h>
# include <sys/mount.h>
#endif /* __linux__ */ #endif /* __linux__ */
#include "internal.h" #include "internal.h"
...@@ -461,6 +462,38 @@ virCgroupV2HasEmptyTasks(virCgroupPtr cgroup, ...@@ -461,6 +462,38 @@ virCgroupV2HasEmptyTasks(virCgroupPtr cgroup,
} }
static int
virCgroupV2BindMount(virCgroupPtr group,
const char *oldroot,
const char *mountopts)
{
VIR_AUTOFREE(char *) opts = NULL;
VIR_AUTOFREE(char *) src = NULL;
VIR_DEBUG("Mounting cgroups at '%s'", group->unified.mountPoint);
if (virFileMakePath(group->unified.mountPoint) < 0) {
virReportSystemError(errno, _("Unable to create directory %s"),
group->unified.mountPoint);
return -1;
}
if (virAsprintf(&opts, "mode=755,size=65536%s", mountopts) < 0)
return -1;
if (virAsprintf(&src, "%s%s", oldroot, group->unified.mountPoint) < 0)
return -1;
if (mount(src, group->unified.mountPoint, "none", MS_BIND, NULL) < 0) {
virReportSystemError(errno, _("Failed to bind cgroup '%s' on '%s'"),
src, group->unified.mountPoint);
return -1;
}
return 0;
}
virCgroupBackend virCgroupV2Backend = { virCgroupBackend virCgroupV2Backend = {
.type = VIR_CGROUP_BACKEND_TYPE_V2, .type = VIR_CGROUP_BACKEND_TYPE_V2,
...@@ -480,6 +513,7 @@ virCgroupBackend virCgroupV2Backend = { ...@@ -480,6 +513,7 @@ virCgroupBackend virCgroupV2Backend = {
.remove = virCgroupV2Remove, .remove = virCgroupV2Remove,
.addTask = virCgroupV2AddTask, .addTask = virCgroupV2AddTask,
.hasEmptyTasks = virCgroupV2HasEmptyTasks, .hasEmptyTasks = virCgroupV2HasEmptyTasks,
.bindMount = virCgroupV2BindMount,
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册