[libvirt] [PATCH v2 18/53] [ACKED] vircgroup: introduce virCgroupV2BindMount

Pavel Hrdina phrdina at redhat.com
Fri Oct 5 12:43:39 UTC 2018


Signed-off-by: Pavel Hrdina <phrdina at redhat.com>
---
 src/util/vircgroupv2.c | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/src/util/vircgroupv2.c b/src/util/vircgroupv2.c
index d20221cf9d..2e296b738a 100644
--- a/src/util/vircgroupv2.c
+++ b/src/util/vircgroupv2.c
@@ -21,6 +21,7 @@
 
 #ifdef __linux__
 # include <mntent.h>
+# include <sys/mount.h>
 #endif /* __linux__ */
 
 #include "internal.h"
@@ -470,6 +471,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 = {
     .type = VIR_CGROUP_BACKEND_TYPE_V2,
 
@@ -489,6 +522,7 @@ virCgroupBackend virCgroupV2Backend = {
     .remove = virCgroupV2Remove,
     .addTask = virCgroupV2AddTask,
     .hasEmptyTasks = virCgroupV2HasEmptyTasks,
+    .bindMount = virCgroupV2BindMount,
 };
 
 
-- 
2.17.1




More information about the libvir-list mailing list