]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
test_driver: implement virDomainFSThaw
authorIlias Stamatis <stamatis.iliass@gmail.com>
Sun, 4 Aug 2019 13:27:17 +0000 (15:27 +0200)
committerErik Skultety <eskultet@redhat.com>
Tue, 6 Aug 2019 08:40:51 +0000 (10:40 +0200)
Signed-off-by: Ilias Stamatis <stamatis.iliass@gmail.com>
Reviewed-by: Erik Skultety <eskultet@redhat.com>
src/test/test_driver.c

index 9a3ae6821756bdaebe283560f0c16a09a4e956cb..5ef0d4c6a73888018312d73f69f718926a063822 100755 (executable)
@@ -4134,6 +4134,66 @@ testDomainFSFreeze(virDomainPtr dom,
 }
 
 
+static int
+testDomainFSThaw(virDomainPtr dom,
+                   const char **mountpoints,
+                   unsigned int nmountpoints,
+                   unsigned int flags)
+{
+    virDomainObjPtr vm;
+    testDomainObjPrivatePtr priv;
+    size_t i;
+    int ret = -1;
+
+    virCheckFlags(0, -1);
+
+    if (!(vm = testDomObjFromDomain(dom)))
+        goto cleanup;
+
+    if (virDomainObjCheckActive(vm) < 0)
+        goto cleanup;
+
+    priv = vm->privateData;
+
+    if (nmountpoints == 0) {
+        ret = priv->frozen[0] + priv->frozen[1];
+        priv->frozen[0] = priv->frozen[1] = false;
+    } else {
+        int nthaw = 0;
+        bool freeze[2];
+
+        memcpy(&freeze, priv->frozen, 2);
+
+        for (i = 0; i < nmountpoints; i++) {
+            if (STREQ(mountpoints[i], "/")) {
+                if (freeze[0]) {
+                    freeze[0] = false;
+                    nthaw++;
+                }
+            } else if (STREQ(mountpoints[i], "/boot")) {
+                if (freeze[1]) {
+                    freeze[1] = false;
+                    nthaw++;
+                }
+            } else {
+                virReportError(VIR_ERR_OPERATION_INVALID,
+                               _("mount point not found: %s"),
+                               mountpoints[i]);
+                goto cleanup;
+            }
+        }
+
+        /* steal the helper copy */
+        memcpy(priv->frozen, &freeze, 2);
+        ret = nthaw;
+    }
+
+ cleanup:
+    virDomainObjEndAPI(&vm);
+    return ret;
+}
+
+
 static int testDomainGetAutostart(virDomainPtr domain,
                                   int *autostart)
 {
@@ -8836,6 +8896,7 @@ static virHypervisorDriver testHypervisorDriver = {
     .domainUndefine = testDomainUndefine, /* 0.1.11 */
     .domainUndefineFlags = testDomainUndefineFlags, /* 0.9.4 */
     .domainFSFreeze = testDomainFSFreeze, /* 5.7.0 */
+    .domainFSThaw = testDomainFSThaw, /* 5.7.0 */
     .domainGetAutostart = testDomainGetAutostart, /* 0.3.2 */
     .domainSetAutostart = testDomainSetAutostart, /* 0.3.2 */
     .domainGetDiskErrors = testDomainGetDiskErrors, /* 5.4.0 */