]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qcow2: Remove abort on free_clusters failure
authorKevin Wolf <kwolf@redhat.com>
Wed, 21 Apr 2010 09:37:52 +0000 (11:37 +0200)
committerKevin Wolf <kwolf@redhat.com>
Mon, 3 May 2010 08:07:32 +0000 (10:07 +0200)
While it's true that during regular operation free_clusters failure would be a
bug, an I/O error can always happen. There's no need to kill the VM, the worst
thing that can happen (and it will) is that we leak some clusters.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/qcow2-refcount.c

index 95491d338855ea6de55a0c12094515ce3339dc2c..744107cd1da5a30bfbf17c8c7f7f2f2222f5c8c2 100644 (file)
@@ -638,7 +638,7 @@ void qcow2_free_clusters(BlockDriverState *bs,
     ret = update_refcount(bs, offset, size, -1);
     if (ret < 0) {
         fprintf(stderr, "qcow2_free_clusters failed: %s\n", strerror(-ret));
-        abort();
+        /* TODO Remember the clusters to free them later and avoid leaking */
     }
 }