diff options
author | Max Reitz <mreitz@redhat.com> | 2016-03-16 19:54:45 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-03-17 15:47:57 +0100 |
commit | 9aaf28c61dd3e3f4af125dd5d62625e4645f1958 (patch) | |
tree | a4dad699077994829e6850c3b64794593112448e /blockdev.c | |
parent | 79720af640f3d23b446df4284a8f5b98efbb709d (diff) | |
download | qemu-9aaf28c61dd3e3f4af125dd5d62625e4645f1958.zip |
block: Remove bdrv_states list
Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'blockdev.c')
-rw-r--r-- | blockdev.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/blockdev.c b/blockdev.c index a5df7e7590..85dee5787b 100644 --- a/blockdev.c +++ b/blockdev.c @@ -2426,11 +2426,6 @@ void qmp_x_blockdev_remove_medium(const char *device, Error **errp) goto out; } - /* This follows the convention established by bdrv_make_anon() */ - if (bs->device_list.tqe_prev) { - bdrv_device_remove(bs); - } - blk_remove_bs(blk); if (!blk_dev_has_tray(blk)) { @@ -2478,8 +2473,6 @@ static void qmp_blockdev_insert_anon_medium(const char *device, blk_insert_bs(blk, bs); - QTAILQ_INSERT_TAIL(&bdrv_states, bs, device_list); - if (!blk_dev_has_tray(blk)) { /* For tray-less devices, blockdev-close-tray is a no-op (or may not be * called at all); therefore, the medium needs to be pushed into the |