Signed-off-by: Pavel Hrdina <phrdina(a)redhat.com>
---
src/util/vircgroupv2.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/src/util/vircgroupv2.c b/src/util/vircgroupv2.c
index 800fc083f2..307a0b5142 100644
--- a/src/util/vircgroupv2.c
+++ b/src/util/vircgroupv2.c
@@ -214,6 +214,20 @@ virCgroupV2DetectPlacement(virCgroupPtr group,
}
+static int
+virCgroupV2ValidatePlacement(virCgroupPtr group,
+ pid_t pid ATTRIBUTE_UNUSED)
+{
+ if (!group->unified.placement) {
+ virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
+ _("Could not find placement for v2 controller"));
+ return -1;
+ }
+
+ return 0;
+}
+
+
virCgroupBackend virCgroupV2Backend = {
.type = VIR_CGROUP_BACKEND_TYPE_V2,
@@ -223,6 +237,7 @@ virCgroupBackend virCgroupV2Backend = {
.copyPlacement = virCgroupV2CopyPlacement,
.detectMounts = virCgroupV2DetectMounts,
.detectPlacement = virCgroupV2DetectPlacement,
+ .validatePlacement = virCgroupV2ValidatePlacement,
};
--
2.17.1