From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH 4/9] ehci doesn't support migration
Date: Wed, 20 Jul 2011 12:09:34 +0200 [thread overview]
Message-ID: <1311156579-9814-5-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1311156579-9814-1-git-send-email-kraxel@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
hw/usb-ehci.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/hw/usb-ehci.c b/hw/usb-ehci.c
index a4758f9..8b0dcc3 100644
--- a/hw/usb-ehci.c
+++ b/hw/usb-ehci.c
@@ -2244,6 +2244,11 @@ static USBBusOps ehci_bus_ops = {
.register_companion = ehci_register_companion,
};
+static const VMStateDescription vmstate_ehci = {
+ .name = "ehci",
+ .unmigratable = 1,
+};
+
static Property ehci_properties[] = {
DEFINE_PROP_UINT32("freq", EHCIState, freq, FRAME_TIMER_FREQ),
DEFINE_PROP_UINT32("maxframes", EHCIState, maxframes, 128),
@@ -2254,6 +2259,7 @@ static PCIDeviceInfo ehci_info[] = {
{
.qdev.name = "usb-ehci",
.qdev.size = sizeof(EHCIState),
+ .qdev.vmsd = &vmstate_ehci,
.init = usb_ehci_initfn,
.vendor_id = PCI_VENDOR_ID_INTEL,
.device_id = PCI_DEVICE_ID_INTEL_82801D, /* ich4 */
@@ -2263,6 +2269,7 @@ static PCIDeviceInfo ehci_info[] = {
},{
.qdev.name = "ich9-usb-ehci1",
.qdev.size = sizeof(EHCIState),
+ .qdev.vmsd = &vmstate_ehci,
.init = usb_ehci_initfn,
.vendor_id = PCI_VENDOR_ID_INTEL,
.device_id = PCI_DEVICE_ID_INTEL_82801I_EHCI1,
--
1.7.1
next prev parent reply other threads:[~2011-07-20 10:10 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-20 10:09 [Qemu-devel] [PULL] non-migratable devices Gerd Hoffmann
2011-07-20 10:09 ` [Qemu-devel] [PATCH 1/9] vmstate: add no_migrate flag to VMStateDescription Gerd Hoffmann
2011-07-20 10:09 ` [Qemu-devel] [PATCH 2/9] vmstate: complain about devices without vmstate Gerd Hoffmann
2011-07-20 12:40 ` Peter Maydell
2011-07-20 12:51 ` Gerd Hoffmann
2011-07-20 10:09 ` [Qemu-devel] [PATCH 3/9] ahci doesn't support migration Gerd Hoffmann
2011-07-20 10:09 ` Gerd Hoffmann [this message]
2011-07-20 10:09 ` [Qemu-devel] [PATCH 5/9] usb storage: first migration support bits Gerd Hoffmann
2011-07-29 15:56 ` Paolo Bonzini
2011-07-20 10:09 ` [Qemu-devel] [PATCH 6/9] usb-wacom doesn't support migration Gerd Hoffmann
2011-07-29 15:57 ` Paolo Bonzini
2011-07-20 10:09 ` [Qemu-devel] [PATCH 7/9] usb-bt " Gerd Hoffmann
2011-07-20 10:09 ` [Qemu-devel] [PATCH 8/9] usb-net " Gerd Hoffmann
2011-07-20 10:09 ` [Qemu-devel] [PATCH 9/9] usb-serial " Gerd Hoffmann
2011-07-22 14:21 ` [Qemu-devel] [PULL] non-migratable devices Anthony Liguori
2011-07-22 14:32 ` Gerd Hoffmann
2011-07-29 15:46 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1311156579-9814-5-git-send-email-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).