mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
block: Attach non-qdev devices as well
For now, this just protects against programming errors like having the same drive back multiple non-qdev devices, or untimely bdrv_delete(). Later commits will add other interesting uses. While there, rename BlockDriverState member peer to dev, bdrv_attach() to bdrv_attach_dev(), bdrv_detach() to bdrv_detach_dev(), and bdrv_get_attached() to bdrv_get_attached_dev(). Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
648fb0ea5e
commit
fa879d62eb
12 changed files with 39 additions and 22 deletions
|
|
@ -697,6 +697,7 @@ static int blk_init(struct XenDevice *xendev)
|
|||
xen_be_printf(&blkdev->xendev, 2, "get configured bdrv (cmdline setup)\n");
|
||||
blkdev->bs = blkdev->dinfo->bdrv;
|
||||
}
|
||||
bdrv_attach_dev_nofail(blkdev->bs, blkdev);
|
||||
blkdev->file_blk = BLOCK_SIZE;
|
||||
blkdev->file_size = bdrv_getlength(blkdev->bs);
|
||||
if (blkdev->file_size < 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue