]> xenbits.xensource.com Git - people/dariof/libvirt.git/commitdiff
storage: Fix bug of fs pool destroying
authorOsier Yang <jyang@redhat.com>
Wed, 21 Nov 2012 03:22:39 +0000 (11:22 +0800)
committerOsier Yang <jyang@redhat.com>
Thu, 22 Nov 2012 03:22:12 +0000 (11:22 +0800)
Regression introduced by commit 258e06c85b7, "ret" could be set to 1
or 0 by virStorageBackendFileSystemIsMounted before goto cleanup.
This could mislead the callers (up to the public API
virStoragePoolDestroy) to return success even the underlying umount
command fails.

src/storage/storage_backend_fs.c

index 332267759f5e7488036b94bd4145b15ba8b9763f..2d175ba844636033867806f764e40ea74db73de7 100644 (file)
@@ -449,6 +449,7 @@ static int
 virStorageBackendFileSystemUnmount(virStoragePoolObjPtr pool) {
     virCommandPtr cmd = NULL;
     int ret = -1;
+    int rc;
 
     if (pool->def->type == VIR_STORAGE_POOL_NETFS) {
         if (pool->def->source.nhost != 1) {
@@ -475,12 +476,8 @@ virStorageBackendFileSystemUnmount(virStoragePoolObjPtr pool) {
     }
 
     /* Short-circuit if already unmounted */
-    if ((ret = virStorageBackendFileSystemIsMounted(pool)) != 1) {
-        if (ret < 0)
-            return -1;
-        else
-            return 0;
-    }
+    if ((rc = virStorageBackendFileSystemIsMounted(pool)) != 1)
+        return rc;
 
     cmd = virCommandNewArgList(UMOUNT,
                                pool->def->target.path,