From: Max Reitz Date: Tue, 17 May 2016 14:41:26 +0000 (+0200) Subject: block: Drop useless bdrv_new() call X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=506f8709ceddd26542824d8cb9eac80201d085f1;p=qemu.git block: Drop useless bdrv_new() call bdrv_append_temp_snapshot() uses bdrv_new() to create an empty BDS before invoking bdrv_open() on that BDS. This is probably a relict from when it used to do some modifications on that empty BDS, but now that is unnecessary, so we can just set bs_snapshot to NULL and let bdrv_open() do the rest. Signed-off-by: Max Reitz Reviewed-by: Alberto Garcia Reviewed-by: Kevin Wolf Signed-off-by: Kevin Wolf --- diff --git a/block.c b/block.c index d287771659..f85c5a2c9b 100644 --- a/block.c +++ b/block.c @@ -1470,8 +1470,7 @@ static int bdrv_append_temp_snapshot(BlockDriverState *bs, int flags, qdict_put(snapshot_options, "driver", qstring_from_str("qcow2")); - bs_snapshot = bdrv_new(); - + bs_snapshot = NULL; ret = bdrv_open(&bs_snapshot, NULL, NULL, snapshot_options, flags, &local_err); snapshot_options = NULL;