]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
storage: Use virStoragePoolObjGetAutostartLink
authorJohn Ferlan <jferlan@redhat.com>
Wed, 26 Jul 2017 16:06:58 +0000 (12:06 -0400)
committerJohn Ferlan <jferlan@redhat.com>
Tue, 19 Sep 2017 12:28:50 +0000 (08:28 -0400)
Use the new accessor API for storage_driver.

src/storage/storage_driver.c

index 01644db28997b3de3c6cff7ff8f76689975cfb23..c9e3f4675739a2d4fd1799e57af490bfdc2bac61 100644 (file)
@@ -814,6 +814,7 @@ static int
 storagePoolUndefine(virStoragePoolPtr pool)
 {
     virStoragePoolObjPtr obj;
+    const char *autostartLink;
     virObjectEventPtr event = NULL;
     int ret = -1;
 
@@ -838,18 +839,17 @@ storagePoolUndefine(virStoragePoolPtr pool)
         goto cleanup;
     }
 
+    autostartLink = virStoragePoolObjGetAutostartLink(obj);
     if (virStoragePoolObjDeleteDef(obj) < 0)
         goto cleanup;
 
-    if (unlink(obj->autostartLink) < 0 &&
-        errno != ENOENT &&
-        errno != ENOTDIR) {
+    if (autostartLink && unlink(autostartLink) < 0 &&
+        errno != ENOENT && errno != ENOTDIR) {
         char ebuf[1024];
         VIR_ERROR(_("Failed to delete autostart link '%s': %s"),
-                  obj->autostartLink, virStrerror(errno, ebuf, sizeof(ebuf)));
+                  autostartLink, virStrerror(errno, ebuf, sizeof(ebuf)));
     }
 
-    VIR_FREE(obj->autostartLink);
 
     event = virStoragePoolEventLifecycleNew(obj->def->name,
                                             obj->def->uuid,
@@ -1268,6 +1268,7 @@ storagePoolSetAutostart(virStoragePoolPtr pool,
 {
     virStoragePoolObjPtr obj;
     const char *configFile;
+    const char *autostartLink;
     int ret = -1;
 
     storageDriverLock();
@@ -1283,6 +1284,8 @@ storagePoolSetAutostart(virStoragePoolPtr pool,
         goto cleanup;
     }
 
+    autostartLink = virStoragePoolObjGetAutostartLink(obj);
+
     autostart = (autostart != 0);
 
     if (obj->autostart != autostart) {
@@ -1294,18 +1297,18 @@ storagePoolSetAutostart(virStoragePoolPtr pool,
                 goto cleanup;
             }
 
-            if (symlink(configFile, obj->autostartLink) < 0) {
+            if (symlink(configFile, autostartLink) < 0) {
                 virReportSystemError(errno,
                                      _("Failed to create symlink '%s' to '%s'"),
-                                     obj->autostartLink, configFile);
+                                     autostartLink, configFile);
                 goto cleanup;
             }
         } else {
-            if (unlink(obj->autostartLink) < 0 &&
+            if (autostartLink && unlink(autostartLink) < 0 &&
                 errno != ENOENT && errno != ENOTDIR) {
                 virReportSystemError(errno,
                                      _("Failed to delete symlink '%s'"),
-                                     obj->autostartLink);
+                                     autostartLink);
                 goto cleanup;
             }
         }