]> git.proxmox.com Git - mirror_qemu.git/commit
throttle: Remove block from group on hot-unplug
authorEric Blake <eblake@redhat.com>
Thu, 6 Apr 2017 19:08:47 +0000 (14:08 -0500)
committerMax Reitz <mreitz@redhat.com>
Tue, 11 Apr 2017 13:33:00 +0000 (15:33 +0200)
commit1606e4cf8a976513ecac70ad6642a7ec45744cf5
treeb8703792758bb5ea05d7c153a568934e942945b2
parent7a9e51198c24a576275cf509a110d24d7c6ca664
throttle: Remove block from group on hot-unplug

When a block device that is part of a throttle group is hot-unplugged,
we forgot to remove it from the throttle group. This leaves stale
memory around, and causes an easily reproducible crash:

$ ./x86_64-softmmu/qemu-system-x86_64 -nodefaults -nographic -qmp stdio \
-device virtio-scsi-pci,bus=pci.0 -drive \
id=drive_image2,if=none,format=raw,file=file2,bps=512000,iops=100,group=foo \
-device scsi-hd,id=image2,drive=drive_image2 -drive \
id=drive_image3,if=none,format=raw,file=file3,bps=512000,iops=100,group=foo \
-device scsi-hd,id=image3,drive=drive_image3
{'execute':'qmp_capabilities'}
{'execute':'device_del','arguments':{'id':'image3'}}
{'execute':'system_reset'}

Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1428810
Suggested-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
Message-id: 20170406190847.29347-1-eblake@redhat.com
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
block/block-backend.c