diff options
author | Hans de Goede <hdegoede@redhat.com> | 2012-12-14 14:35:34 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-01-07 12:57:24 +0100 |
commit | ecfdc15f4351a17989d446f4f1e6d1931d9c1677 (patch) | |
tree | fef51b30dec3b01094faf3710dae1f3b6e8e38ed /hw/usb | |
parent | 719c130dcaa3b1269beed71ca9cf6c43a0219b30 (diff) | |
download | qemu-ecfdc15f4351a17989d446f4f1e6d1931d9c1677.zip qemu-ecfdc15f4351a17989d446f4f1e6d1931d9c1677.tar.gz qemu-ecfdc15f4351a17989d446f4f1e6d1931d9c1677.tar.bz2 |
uhci: Fix pending interrupts getting lost on migration
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb')
-rw-r--r-- | hw/usb/hcd-uhci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/usb/hcd-uhci.c b/hw/usb/hcd-uhci.c index 5685b9f..e82e5cc 100644 --- a/hw/usb/hcd-uhci.c +++ b/hw/usb/hcd-uhci.c @@ -433,7 +433,7 @@ static int uhci_post_load(void *opaque, int version_id) static const VMStateDescription vmstate_uhci = { .name = "uhci", - .version_id = 2, + .version_id = 3, .minimum_version_id = 1, .minimum_version_id_old = 1, .post_load = uhci_post_load, @@ -451,6 +451,7 @@ static const VMStateDescription vmstate_uhci = { VMSTATE_UINT8(status2, UHCIState), VMSTATE_TIMER(frame_timer, UHCIState), VMSTATE_INT64_V(expire_time, UHCIState, 2), + VMSTATE_UINT32_V(pending_int_mask, UHCIState, 3), VMSTATE_END_OF_LIST() } }; |