From: Stefan Hajnoczi Date: Mon, 4 Mar 2013 14:02:35 +0000 (+0100) Subject: qcow2: drop unnecessary flush in qcow2_update_snapshot_refcount() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3647917919dfce5f731755f0ac5955a64bc12570;p=qemu.git qcow2: drop unnecessary flush in qcow2_update_snapshot_refcount() We already flush when the function completes. There is no need to flush after every compressed cluster. Signed-off-by: Stefan Hajnoczi Signed-off-by: Kevin Wolf --- diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c index 92519ea62a..9bfb390519 100644 --- a/block/qcow2-refcount.c +++ b/block/qcow2-refcount.c @@ -790,10 +790,6 @@ int qcow2_update_snapshot_refcount(BlockDriverState *bs, if (ret < 0) { goto fail; } - - /* TODO Flushing once for the whole function should - * be enough */ - bdrv_flush(bs->file); } /* compressed clusters are never modified */ refcount = 2;