mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
block: Add error parameter to blk_insert_bs()
Now that blk_insert_bs() requests the BlockBackend permissions for the node it attaches to, it can fail. Instead of aborting, pass the errors to the callers. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Acked-by: Fam Zheng <famz@redhat.com>
This commit is contained in:
parent
6d0eb64d5c
commit
d7086422b1
14 changed files with 100 additions and 29 deletions
|
@ -446,7 +446,7 @@ static void init_blk_migration(QEMUFile *f)
|
|||
BlockDriverState *bs = bmds_bs[i].bs;
|
||||
|
||||
if (bmds) {
|
||||
blk_insert_bs(bmds->blk, bs);
|
||||
blk_insert_bs(bmds->blk, bs, &error_abort);
|
||||
|
||||
alloc_aio_bitmap(bmds);
|
||||
error_setg(&bmds->blocker, "block device is in use by migration");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue