From: Wen Congyang <wency@cn.fujitsu.com>
To: Alberto Garcia <berto@igalia.com>,
qemu devel <qemu-devel@nongnu.org>,
Eric Blake <eblake@redhat.com>,
Markus Armbruster <armbru@redhat.com>,
Stefan Hajnoczi <stefanha@redhat.com>
Cc: Kevin Wolf <kwolf@redhat.com>,
zhanghailiang <zhang.zhanghailiang@huawei.com>,
qemu block <qemu-block@nongnu.org>,
Jiang Yunhong <yunhong.jiang@intel.com>,
Dong Eddie <eddie.dong@intel.com>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
Gonglei <arei.gonglei@huawei.com>,
Yang Hongyang <yanghy@cn.fujitsu.com>
Subject: Re: [Qemu-devel] [PATCH for-2.5 3/6] Add new block driver interface to add/delete a BDS's child
Date: Fri, 7 Aug 2015 09:03:07 +0800 [thread overview]
Message-ID: <55C403CB.801@cn.fujitsu.com> (raw)
In-Reply-To: <w51egjgbi5t.fsf@maestria.local.igalia.com>
On 08/06/2015 10:33 PM, Alberto Garcia wrote:
> On Fri 31 Jul 2015 11:19:12 AM CEST, Wen Congyang wrote:
>
>> +/*
>> + * Hot add/remove a BDS's child. So the user can take a child offline when
>> + * it is broken and take a new child online
>> + */
>> +void bdrv_add_child(BlockDriverState *bs, QDict *options, Error **errp)
>> +{
>> +
>> + if (!bs->drv || !bs->drv->bdrv_add_child) {
>> + error_setg(errp, "The BDS %s doesn't support adding a child",
>> + bdrv_get_id_or_node_name(bs));
>> + return;
>> + }
>> +
>> + bs->drv->bdrv_add_child(bs, options, errp);
>> +}
>> +
>> +void bdrv_del_child(BlockDriverState *bs, BlockDriverState *child_bs,
>> + Error **errp)
>> +{
>> + BdrvChild *child;
>> +
>> + if (!bs->drv || !bs->drv->bdrv_del_child) {
>> + error_setg(errp, "The BDS %s doesn't support removing a child",
>> + bdrv_get_id_or_node_name(bs));
>> + return;
>> + }
>> +
>> + QLIST_FOREACH(child, &bs->children, next) {
>> + if (child->bs == child_bs) {
>> + break;
>> + }
>> + }
>> +
>> + if (!child) {
>> + error_setg(errp, "The BDS %s is not the BDS %s's child",
>> + bdrv_get_id_or_node_name(child_bs),
>> + bdrv_get_id_or_node_name(bs));
>> + return;
>> + }
>> +
>> + bs->drv->bdrv_del_child(bs, child_bs, errp);
>> +}
>
> I see that bdrv_del_child() checks that the child is in bs->children,
> but who takes care of putting it there in the first place?
The child is opened by the function bdrv_open_image().
bdrv_open_image()
bdrv_open_child()
bdrv_attach_child()
Thanks
Wen Congyang
>
> Berto
> .
>
next prev parent reply other threads:[~2015-08-07 1:04 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-31 9:19 [Qemu-devel] [PATCH for-2.5 0/6] qapi: child add/delete support Wen Congyang
2015-07-31 9:19 ` [Qemu-devel] [PATCH for-2.5 1/6] QAPI: move InetSocketAddress to qapi/common.json Wen Congyang
2015-08-07 13:10 ` Alberto Garcia
2015-07-31 9:19 ` [Qemu-devel] [PATCH for-2.5 2/6] support nbd driver in blockdev-add Wen Congyang
2015-08-07 12:48 ` Alberto Garcia
2015-07-31 9:19 ` [Qemu-devel] [PATCH for-2.5 3/6] Add new block driver interface to add/delete a BDS's child Wen Congyang
2015-08-06 14:33 ` Alberto Garcia
2015-08-07 1:03 ` Wen Congyang [this message]
2015-08-07 11:52 ` Alberto Garcia
2015-08-10 8:19 ` Alberto Garcia
2015-08-10 9:53 ` Wen Congyang
2015-07-31 9:19 ` [Qemu-devel] [PATCH for-2.5 4/6] quorum: implement block driver interfaces " Wen Congyang
2015-08-07 12:08 ` Alberto Garcia
2015-07-31 9:19 ` [Qemu-devel] [PATCH for-2.5 5/6] qmp: add monitor command to add/remove a child Wen Congyang
2015-08-07 13:12 ` Alberto Garcia
2015-08-10 1:00 ` Wen Congyang
2015-08-10 8:13 ` Alberto Garcia
2015-07-31 9:19 ` [Qemu-devel] [PATCH for-2.5 6/6] hmp: " Wen Congyang
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=55C403CB.801@cn.fujitsu.com \
--to=wency@cn.fujitsu.com \
--cc=arei.gonglei@huawei.com \
--cc=armbru@redhat.com \
--cc=berto@igalia.com \
--cc=dgilbert@redhat.com \
--cc=eblake@redhat.com \
--cc=eddie.dong@intel.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=yanghy@cn.fujitsu.com \
--cc=yunhong.jiang@intel.com \
--cc=zhang.zhanghailiang@huawei.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.