From: Jeff Cody <jcody@redhat.com>
To: qemu-devel@nongnu.org
Cc: kwolf@redhat.com, berto@igalia.com, armbru@redhat.com,
qemu-block@nongnu.org, quintela@redhat.com
Subject: [Qemu-devel] [PATCH 1/3] block: Use bdrv_lookup_bs() instead of bdrv_find_node()
Date: Wed, 14 Oct 2015 09:16:00 -0400 [thread overview]
Message-ID: <da3ea71ac0a1702e8f877b51fdcc47c7a5287a87.1444827043.git.jcody@redhat.com> (raw)
In-Reply-To: <cover.1444827043.git.jcody@redhat.com>
In-Reply-To: <cover.1444827043.git.jcody@redhat.com>
This is a precursor to making bdrv_find_node() static, and internal
to block.c
To find a BlockDriverState interface, it can be done via blk_by_name(),
bdrv_find_node(), and bdrv_lookup_bs(). The latter can take the place
of the other two, in the instances where we are only concerned with
the BlockDriverState.
There is no benefit in calling bdrv_find_node() directly. This patch
replaces all calls to bdrv_find_node() outside of block.c with
bdrv_lookup_bs().
Signed-off-by: Jeff Cody <jcody@redhat.com>
---
block/block-backend.c | 2 +-
block/mirror.c | 2 +-
block/write-threshold.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/block/block-backend.c b/block/block-backend.c
index 2256551..7026a3f 100644
--- a/block/block-backend.c
+++ b/block/block-backend.c
@@ -67,7 +67,7 @@ BlockBackend *blk_new(const char *name, Error **errp)
error_setg(errp, "Device with id '%s' already exists", name);
return NULL;
}
- if (bdrv_find_node(name)) {
+ if (bdrv_lookup_bs(NULL, name, NULL)) {
error_setg(errp,
"Device name '%s' conflicts with an existing node name",
name);
diff --git a/block/mirror.c b/block/mirror.c
index 7e43511..cb3c765 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -644,7 +644,7 @@ static void mirror_complete(BlockJob *job, Error **errp)
if (s->replaces) {
AioContext *replace_aio_context;
- s->to_replace = bdrv_find_node(s->replaces);
+ s->to_replace = bdrv_lookup_bs(NULL, s->replaces, NULL);
if (!s->to_replace) {
error_setg(errp, "Node name '%s' not found", s->replaces);
return;
diff --git a/block/write-threshold.c b/block/write-threshold.c
index a53c1f5..908fa7f 100644
--- a/block/write-threshold.c
+++ b/block/write-threshold.c
@@ -110,7 +110,7 @@ void qmp_block_set_write_threshold(const char *node_name,
BlockDriverState *bs;
AioContext *aio_context;
- bs = bdrv_find_node(node_name);
+ bs = bdrv_lookup_bs(NULL, node_name, NULL);
if (!bs) {
error_setg(errp, "Device '%s' not found", node_name);
return;
--
1.9.3
next prev parent reply other threads:[~2015-10-14 13:16 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-14 13:15 [Qemu-devel] [PATCH 0/3] Prefer bdrv_lookup_bs() to find BDS nodes Jeff Cody
2015-10-14 13:16 ` Jeff Cody [this message]
2015-10-14 17:29 ` [Qemu-devel] [Qemu-block] [PATCH 1/3] block: Use bdrv_lookup_bs() instead of bdrv_find_node() Max Reitz
2015-10-14 17:34 ` Max Reitz
2015-10-14 17:42 ` Jeff Cody
2015-10-15 12:01 ` [Qemu-devel] " Alberto Garcia
2015-10-16 7:52 ` Markus Armbruster
2015-10-14 13:16 ` [Qemu-devel] [PATCH 2/3] block: make bdrv_find_node() static Jeff Cody
2015-10-14 17:41 ` [Qemu-devel] [Qemu-block] " Max Reitz
2015-10-15 12:01 ` [Qemu-devel] " Alberto Garcia
2015-10-14 13:16 ` [Qemu-devel] [PATCH 3/3] block: use bdrv_lookup_bs() over blk_by_name() for BDS only results Jeff Cody
2015-10-14 18:05 ` [Qemu-devel] [Qemu-block] " Max Reitz
2015-10-14 18:13 ` Jeff Cody
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=da3ea71ac0a1702e8f877b51fdcc47c7a5287a87.1444827043.git.jcody@redhat.com \
--to=jcody@redhat.com \
--cc=armbru@redhat.com \
--cc=berto@igalia.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
/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).