diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-12-15 12:45:24 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-01-24 17:21:34 +0100 |
commit | d15500902adb79034ef40ee3a06bbc0a7e0d8b19 (patch) | |
tree | aaa52156ba14affc9db073cb58d4a324a467386c /hw | |
parent | c1ecb40a6124b80f1e346e38a1975e82da6507ca (diff) | |
download | qemu-d15500902adb79034ef40ee3a06bbc0a7e0d8b19.zip qemu-d15500902adb79034ef40ee3a06bbc0a7e0d8b19.tar.gz qemu-d15500902adb79034ef40ee3a06bbc0a7e0d8b19.tar.bz2 |
usb hub: add migration support
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb-hub.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/hw/usb-hub.c b/hw/usb-hub.c index 78698ca..3dd31ba 100644 --- a/hw/usb-hub.c +++ b/hw/usb-hub.c @@ -544,11 +544,35 @@ static int usb_hub_initfn(USBDevice *dev) return 0; } +static const VMStateDescription vmstate_usb_hub_port = { + .name = "usb-hub-port", + .version_id = 1, + .minimum_version_id = 1, + .fields = (VMStateField []) { + VMSTATE_UINT16(wPortStatus, USBHubPort), + VMSTATE_UINT16(wPortChange, USBHubPort), + VMSTATE_END_OF_LIST() + } +}; + +static const VMStateDescription vmstate_usb_hub = { + .name = "usb-hub", + .version_id = 1, + .minimum_version_id = 1, + .fields = (VMStateField []) { + VMSTATE_USB_DEVICE(dev, USBHubState), + VMSTATE_STRUCT_ARRAY(ports, USBHubState, NUM_PORTS, 0, + vmstate_usb_hub_port, USBHubPort), + VMSTATE_END_OF_LIST() + } +}; + static struct USBDeviceInfo hub_info = { .product_desc = "QEMU USB Hub", .qdev.name = "usb-hub", .qdev.fw_name = "hub", .qdev.size = sizeof(USBHubState), + .qdev.vmsd = &vmstate_usb_hub, .usb_desc = &desc_hub, .init = usb_hub_initfn, .handle_packet = usb_hub_handle_packet, |