From: Max Reitz <mreitz@redhat.com>
To: qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
qemu-devel@nongnu.org, Max Reitz <mreitz@redhat.com>
Subject: [Qemu-devel] [PATCH 2/8] block: Drop useless bdrv_new() calls
Date: Tue, 10 Nov 2015 04:44:17 +0100 [thread overview]
Message-ID: <1447127063-4662-3-git-send-email-mreitz@redhat.com> (raw)
In-Reply-To: <1447127063-4662-1-git-send-email-mreitz@redhat.com>
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.
The same applies to bdrv_open_backing_file(). There is even a bit more
cruft here: The assert() was intended for the BDS which is indirectly
passed as the first bdrv_open() argument, so we can now drop it, too.
Signed-off-by: Max Reitz <mreitz@redhat.com>
---
block.c | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/block.c b/block.c
index 5b02990..aae1d69 100644
--- a/block.c
+++ b/block.c
@@ -1212,19 +1212,15 @@ int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp)
goto free_exit;
}
- backing_hd = bdrv_new();
-
if (bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
qdict_put(options, "driver", qstring_from_str(bs->backing_format));
}
- assert(bs->backing == NULL);
+ backing_hd = NULL;
ret = bdrv_open_inherit(&backing_hd,
*backing_filename ? backing_filename : NULL,
NULL, options, 0, bs, &child_backing, &local_err);
if (ret < 0) {
- bdrv_unref(backing_hd);
- backing_hd = NULL;
bs->open_flags |= BDRV_O_NO_BACKING;
error_setg(errp, "Could not open backing file: %s",
error_get_pretty(local_err));
@@ -1350,8 +1346,7 @@ int bdrv_append_temp_snapshot(BlockDriverState *bs, int flags, Error **errp)
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);
if (ret < 0) {
--
2.6.2
next prev parent reply other threads:[~2015-11-10 3:44 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-10 3:44 [Qemu-devel] [PATCH 0/8] blockdev: (Nearly) free clean-up work Max Reitz
2015-11-10 3:44 ` [Qemu-devel] [PATCH 1/8] qapi: Drop QERR_UNKNOWN_BLOCK_FORMAT_FEATURE Max Reitz
2015-11-10 3:59 ` Eric Blake
2015-12-01 10:17 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
2015-11-10 3:44 ` Max Reitz [this message]
2015-12-01 10:31 ` [Qemu-devel] [Qemu-block] [PATCH 2/8] block: Drop useless bdrv_new() calls Alberto Garcia
2015-11-10 3:44 ` [Qemu-devel] [PATCH 3/8] block: Let bdrv_open_inherit() return the snapshot Max Reitz
2015-12-01 14:35 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
2015-12-02 17:26 ` Max Reitz
2015-11-10 3:44 ` [Qemu-devel] [PATCH 4/8] block: Drop BB name from bad option error Max Reitz
2015-12-01 10:34 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
2015-11-10 3:44 ` [Qemu-devel] [PATCH 5/8] block: Drop blk_new_with_bs() Max Reitz
2015-12-01 11:03 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
2015-11-10 3:44 ` [Qemu-devel] [PATCH 6/8] block: Drop bdrv_new_root() Max Reitz
2015-12-01 11:04 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
2015-11-10 3:44 ` [Qemu-devel] [PATCH 7/8] block: Make bdrv_open() return a BDS Max Reitz
2015-12-01 14:44 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
2015-12-02 17:30 ` Max Reitz
2015-11-10 3:44 ` [Qemu-devel] [PATCH 8/8] block: Assert !bs->refcnt in bdrv_close() Max Reitz
2015-12-01 11:06 ` [Qemu-devel] [Qemu-block] " Alberto Garcia
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1447127063-4662-3-git-send-email-mreitz@redhat.com \
--to=mreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).