| Submitter | Kevin Wolf |
|---|---|
| Date | May 28, 2010, 6:01 p.m. |
| Message ID | <1275069692-5756-3-git-send-email-kwolf@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/53942/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/block/qcow2-cluster.c b/block/qcow2-cluster.c index c7057b1..0dc4f1d 100644 --- a/block/qcow2-cluster.c +++ b/block/qcow2-cluster.c @@ -672,8 +672,9 @@ int qcow2_alloc_cluster_link_l2(BlockDriverState *bs, QCowL2Meta *m) (i << s->cluster_bits)) | QCOW_OFLAG_COPIED); } - if (write_l2_entries(s, l2_table, l2_offset, l2_index, m->nb_clusters) < 0) { - ret = -1; + ret = write_l2_entries(s, l2_table, l2_offset, l2_index, m->nb_clusters); + if (ret < 0) { + qcow2_l2_cache_reset(bs); goto err; }