Am 31.03.2016 um 15:07 hat Paolo Bonzini geschrieben: > Failing on -drive/drive_add created BlockBackends was a > requirement for x-blockdev-del, but it sneaked through > the patch review. Let's fix it now. > > Example: > > $ x86_64-softmmu/qemu-system-x86_64 -drive if=none,file=null-co://,id=null > -qmp stdio > >> {'execute':'qmp_capabilities'} > << {"return": {}} > >> {'execute':'x-blockdev-del','arguments':{'id':'null'}} > << {"error": {"class": "GenericError", "desc": "Deleting block backend added > with drive-add is not supported"}} > > And without a DriveInfo: > > >> { "execute": "blockdev-add", "arguments": { "options": { > >> "driver":"null-co", "id":"null2"}}} > << {"return": {}} > >> {'execute':'x-blockdev-del','arguments':{'id':'null2'}} > << {"return": {}} > > Suggested-by: Kevin Wolf <kw...@redhat.com> > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com>
Thanks, applied to the block branch. Kevin