diff options
author | Anthony PERARD <anthony.perard@citrix.com> | 2016-04-12 16:47:52 -0400 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 20:03:49 -0600 |
commit | cde9b1973def50fa21585b39daeed1050244408d (patch) | |
tree | 745b5be94827ff3eacaa91ddac82f4352a7cbb72 /hw | |
parent | 1fa37b35cb1ccc034cc01027c0d0a660c8136eee (diff) | |
download | hqemu-cde9b1973def50fa21585b39daeed1050244408d.zip hqemu-cde9b1973def50fa21585b39daeed1050244408d.tar.gz |
xen: Fix IDE unplug
After commit e5e7855 (blockdev: Separate BB name management), starting a
guest with PVHVM support result in this assert:
qemu-system-i386: block/block-backend.c:173: blk_delete: Assertion `!blk->name' failed.
A backtrace show that a caller is pci_piix3_xen_ide_unplug().
This patch fix it.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Message-id: 1460382666-29885-1-git-send-email-anthony.perard@citrix.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/ide/piix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ide/piix.c b/hw/ide/piix.c index 0a4cbcb..6d76ce9 100644 --- a/hw/ide/piix.c +++ b/hw/ide/piix.c @@ -189,6 +189,7 @@ int pci_piix3_xen_ide_unplug(DeviceState *dev) idedev = pci_ide->bus[di->bus].slave; } idedev->conf.blk = NULL; + monitor_remove_blk(blk); blk_unref(blk); } } |