]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
xen: Allow to undefine a running domain (xm_internal)
authorOsier Yang <jyang@redhat.com>
Fri, 19 Aug 2011 13:53:39 +0000 (21:53 +0800)
committerOsier Yang <jyang@redhat.com>
Fri, 19 Aug 2011 13:53:39 +0000 (21:53 +0800)
src/xen/xm_internal.c

index 95387c9229d34108b8cde50c1c8c497761e0c38e..5c8a017757b03d045924bcfe8ebeac4b2e74a443 100644 (file)
@@ -1218,8 +1218,6 @@ int xenXMDomainUndefine(virDomainPtr domain) {
         return (-1);
     }
 
-    if (domain->id != -1)
-        return (-1);
     if (domain->conn->flags & VIR_CONNECT_RO)
         return (-1);
 
@@ -1235,13 +1233,17 @@ int xenXMDomainUndefine(virDomainPtr domain) {
     if (unlink(entry->filename) < 0)
         goto cleanup;
 
-    /* Remove the name -> filename mapping */
-    if (virHashRemoveEntry(priv->nameConfigMap, domain->name) < 0)
-        goto cleanup;
+    if (virDomainObjIsActive(vm)) {
+        vm->persistent = 0;
+    } else {
+        /* Remove the name -> filename mapping */
+        if (virHashRemoveEntry(priv->nameConfigMap, domain->name) < 0)
+            goto cleanup;
 
-    /* Remove the config record itself */
-    if (virHashRemoveEntry(priv->configCache, entry->filename) < 0)
-        goto cleanup;
+        /* Remove the config record itself */
+        if (virHashRemoveEntry(priv->configCache, entry->filename) < 0)
+            goto cleanup;
+    }
 
     ret = 0;