]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
util: cgroup: remove unused opts in virCgroupV2BindMount
authorJán Tomko <jtomko@redhat.com>
Mon, 3 Aug 2020 11:06:54 +0000 (13:06 +0200)
committerJán Tomko <jtomko@redhat.com>
Mon, 3 Aug 2020 13:52:09 +0000 (15:52 +0200)
In virCgroupV2BindMount there is an unused variable containing
what seem to be tmpfs mount options.

Delete it. Unlike with cgroups v1, we do not create a tmpfs
here.

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
src/util/vircgroupv2.c

index 6b9c5eed70f9d1ff6870841a696c2e20d368937f..ddbe3d666391a37243c7baa5e3355a1823288684 100644 (file)
@@ -548,9 +548,8 @@ virCgroupV2KillRecursive(virCgroupPtr group,
 static int
 virCgroupV2BindMount(virCgroupPtr group,
                      const char *oldroot,
-                     const char *mountopts)
+                     const char *mountopts G_GNUC_UNUSED)
 {
-    g_autofree char *opts = NULL;
     g_autofree char *src = NULL;
 
     VIR_DEBUG("Mounting cgroups at '%s'", group->unified.mountPoint);
@@ -561,8 +560,6 @@ virCgroupV2BindMount(virCgroupPtr group,
         return -1;
     }
 
-    opts = g_strdup_printf("mode=755,size=65536%s", mountopts);
-
     src = g_strdup_printf("%s%s", oldroot, group->unified.mountPoint);
 
     if (mount(src, group->unified.mountPoint, "none", MS_BIND, NULL) < 0) {