projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
719c130
)
uhci: Fix pending interrupts getting lost on migration
author
Hans de Goede
<hdegoede@redhat.com>
Fri, 14 Dec 2012 13:35:34 +0000
(14:35 +0100)
committer
Gerd Hoffmann
<kraxel@redhat.com>
Mon, 7 Jan 2013 11:57:24 +0000
(12:57 +0100)
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/usb/hcd-uhci.c
patch
|
blob
|
history
diff --git
a/hw/usb/hcd-uhci.c
b/hw/usb/hcd-uhci.c
index 5685b9f3a924890e3b50cc8938dfe32e6234ccb8..e82e5cc809a6367b5c4186bb779735b71851d10e 100644
(file)
--- 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()
}
};