qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] ahci live migration
@ 2012-08-07 16:01 Jason Baron
  2012-08-07 16:13 ` Andreas Färber
  0 siblings, 1 reply; 5+ messages in thread
From: Jason Baron @ 2012-08-07 16:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: aliguori, mst, armbru, agraf, kraxel, afaerber

Hi,

vmstate_ahci has its 'unmigratable' bit set. Gerd suggested that there was work
in this area. Anybody know the status on it?

Thanks,

-Jason

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] ahci live migration
  2012-08-07 16:01 [Qemu-devel] ahci live migration Jason Baron
@ 2012-08-07 16:13 ` Andreas Färber
  2012-08-07 16:20   ` Jason Baron
  2012-08-09  9:40   ` Kevin Wolf
  0 siblings, 2 replies; 5+ messages in thread
From: Andreas Färber @ 2012-08-07 16:13 UTC (permalink / raw)
  To: Jason Baron; +Cc: Kevin Wolf, aliguori, mst, armbru, agraf, qemu-devel, kraxel

Hi Jason,

Am 07.08.2012 18:01, schrieb Jason Baron:
> Hi,
> 
> vmstate_ahci has its 'unmigratable' bit set. Gerd suggested that there was work
> in this area. Anybody know the status on it?

That was me working on it. I have a branch corresponding to an RFC I
sent around Christmas - issue being how to model the variable number of
ports in VMSD - that I need to update to the latest suggestion by Igor.

Jason/Kevin, should I prioritize that for 1.2? Or is that a -next topic?

Regards,
Andreas

-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] ahci live migration
  2012-08-07 16:13 ` Andreas Färber
@ 2012-08-07 16:20   ` Jason Baron
  2012-08-08 19:49     ` Andreas Färber
  2012-08-09  9:40   ` Kevin Wolf
  1 sibling, 1 reply; 5+ messages in thread
From: Jason Baron @ 2012-08-07 16:20 UTC (permalink / raw)
  To: Andreas Färber
  Cc: Kevin Wolf, aliguori, mst, armbru, agraf, qemu-devel, kraxel

On Tue, Aug 07, 2012 at 06:13:25PM +0200, Andreas Färber wrote:
> Hi Jason,
> 
> Am 07.08.2012 18:01, schrieb Jason Baron:
> > Hi,
> > 
> > vmstate_ahci has its 'unmigratable' bit set. Gerd suggested that there was work
> > in this area. Anybody know the status on it?
> 
> That was me working on it. I have a branch corresponding to an RFC I
> sent around Christmas - issue being how to model the variable number of
> ports in VMSD - that I need to update to the latest suggestion by Igor.
> 
> Jason/Kevin, should I prioritize that for 1.2? Or is that a -next topic?
> 

I ran into while trying to test q35 live migration (which currently
aborts due to no ahci support). If you have any updated code, I can test
it for you :)

Thanks,

-Jason

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] ahci live migration
  2012-08-07 16:20   ` Jason Baron
@ 2012-08-08 19:49     ` Andreas Färber
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Färber @ 2012-08-08 19:49 UTC (permalink / raw)
  To: Jason Baron; +Cc: Kevin Wolf, aliguori, mst, armbru, agraf, qemu-devel, kraxel

Am 07.08.2012 18:20, schrieb Jason Baron:
> On Tue, Aug 07, 2012 at 06:13:25PM +0200, Andreas Färber wrote:
>> Hi Jason,
>>
>> Am 07.08.2012 18:01, schrieb Jason Baron:
>>> Hi,
>>>
>>> vmstate_ahci has its 'unmigratable' bit set. Gerd suggested that there was work
>>> in this area. Anybody know the status on it?
>>
>> That was me working on it. I have a branch corresponding to an RFC I
>> sent around Christmas - issue being how to model the variable number of
>> ports in VMSD - that I need to update to the latest suggestion by Igor.
>>
>> Jason/Kevin, should I prioritize that for 1.2? Or is that a -next topic?
>>
> 
> I ran into while trying to test q35 live migration (which currently
> aborts due to no ahci support). If you have any updated code, I can test
> it for you :)

This is the updated approach that I mentioned in the other thread:

http://repo.or.cz/w/qemu/afaerber.git/shortlog/refs/heads/ahci-migration

Totally untested so far and as before there is a disconnect between
AHCIState and AHCIDevice.

Andreas

diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
index efea93f..12b9e0d 100644
--- a/hw/ide/ahci.c
+++ b/hw/ide/ahci.c
@@ -1173,6 +1173,47 @@ void ahci_reset(AHCIState *s)
     }
 }

+const VMStateDescription vmstate_ahci_device = {
+    .name = "ahci port",
+    .version_id = 1,
+    .fields = (VMStateField []) {
+        VMSTATE_IDE_BUS(port, AHCIDevice),
+        VMSTATE_UINT32(port_state, AHCIDevice),
+        VMSTATE_UINT32(finished, AHCIDevice),
+        VMSTATE_UINT32(port_regs.lst_addr, AHCIDevice),
+        VMSTATE_UINT32(port_regs.lst_addr_hi, AHCIDevice),
+        VMSTATE_UINT32(port_regs.fis_addr, AHCIDevice),
+        VMSTATE_UINT32(port_regs.fis_addr_hi, AHCIDevice),
+        VMSTATE_UINT32(port_regs.irq_stat, AHCIDevice),
+        VMSTATE_UINT32(port_regs.irq_mask, AHCIDevice),
+        VMSTATE_UINT32(port_regs.cmd, AHCIDevice),
+        VMSTATE_UINT32(port_regs.tfdata, AHCIDevice),
+        VMSTATE_UINT32(port_regs.sig, AHCIDevice),
+        VMSTATE_UINT32(port_regs.scr_stat, AHCIDevice),
+        VMSTATE_UINT32(port_regs.scr_ctl, AHCIDevice),
+        VMSTATE_UINT32(port_regs.scr_err, AHCIDevice),
+        VMSTATE_UINT32(port_regs.scr_act, AHCIDevice),
+        VMSTATE_UINT32(port_regs.cmd_issue, AHCIDevice),
+        VMSTATE_END_OF_LIST()
+    },
+};
+
+const VMStateDescription vmstate_ahci = {
+    .name = "ahci",
+    .version_id = 1,
+    .fields = (VMStateField []) {
+        VMSTATE_BUFFER_MULTIPLY(dev, AHCIState, 0, NULL, 0, ports,
+                                sizeof(AHCIDevice)),
+        VMSTATE_UINT32(control_regs.cap, AHCIState),
+        VMSTATE_UINT32(control_regs.ghc, AHCIState),
+        VMSTATE_UINT32(control_regs.irqstatus, AHCIState),
+        VMSTATE_UINT32(control_regs.impl, AHCIState),
+        VMSTATE_UINT32(control_regs.version, AHCIState),
+        VMSTATE_UINT32(idp_index, AHCIState),
+        VMSTATE_END_OF_LIST()
+    },
+};
+
 typedef struct SysbusAHCIState {
     SysBusDevice busdev;
     AHCIState ahci;
@@ -1181,7 +1222,10 @@ typedef struct SysbusAHCIState {

 static const VMStateDescription vmstate_sysbus_ahci = {
     .name = "sysbus-ahci",
-    .unmigratable = 1,
+    .fields = (VMStateField[]) {
+        VMSTATE_AHCI(ahci, AHCIPCIState),
+        VMSTATE_END_OF_LIST()
+    },
 };

 static void sysbus_ahci_reset(DeviceState *dev)
diff --git a/hw/ide/ahci.h b/hw/ide/ahci.h
index 1200a56..e7ad1d9 100644
--- a/hw/ide/ahci.h
+++ b/hw/ide/ahci.h
@@ -297,7 +297,7 @@ typedef struct AHCIState {
     MemoryRegion idp;       /* Index-Data Pair I/O port space */
     unsigned idp_offset;    /* Offset of index in I/O port space */
     uint32_t idp_index;     /* Current IDP index */
-    int ports;
+    uint32_t ports;
     qemu_irq irq;
     DMAContext *dma;
 } AHCIState;
@@ -307,6 +307,16 @@ typedef struct AHCIPCIState {
     AHCIState ahci;
 } AHCIPCIState;

+extern const VMStateDescription vmstate_ahci;
+
+#define VMSTATE_AHCI(_field, _state) {                               \
+    .name       = (stringify(_field)),                               \
+    .size       = sizeof(AHCIState),                                 \
+    .vmsd       = &vmstate_ahci,                                     \
+    .flags      = VMS_STRUCT,                                        \
+    .offset     = vmstate_offset_value(_state, _field, AHCIState),   \
+}
+
 typedef struct NCQFrame {
     uint8_t fis_type;
     uint8_t c;
diff --git a/hw/ide/ich.c b/hw/ide/ich.c
index 272b773..ae6f56f 100644
--- a/hw/ide/ich.c
+++ b/hw/ide/ich.c
@@ -79,9 +79,14 @@
 #define ICH9_IDP_INDEX          0x10
 #define ICH9_IDP_INDEX_LOG2     0x04

-static const VMStateDescription vmstate_ahci = {
+static const VMStateDescription vmstate_ich9_ahci = {
     .name = "ahci",
-    .unmigratable = 1,
+    .version_id = 1,
+    .fields = (VMStateField []) {
+        VMSTATE_PCI_DEVICE(card, AHCIPCIState),
+        VMSTATE_AHCI(ahci, AHCIPCIState),
+        VMSTATE_END_OF_LIST()
+    },
 };

 static void pci_ich9_reset(DeviceState *dev)
@@ -152,7 +157,7 @@ static void ich_ahci_class_init(ObjectClass *klass,
void *data)
     k->device_id = PCI_DEVICE_ID_INTEL_82801IR;
     k->revision = 0x02;
     k->class_id = PCI_CLASS_STORAGE_SATA;
-    dc->vmsd = &vmstate_ahci;
+    dc->vmsd = &vmstate_ich9_ahci;
     dc->reset = pci_ich9_reset;
 }


-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] ahci live migration
  2012-08-07 16:13 ` Andreas Färber
  2012-08-07 16:20   ` Jason Baron
@ 2012-08-09  9:40   ` Kevin Wolf
  1 sibling, 0 replies; 5+ messages in thread
From: Kevin Wolf @ 2012-08-09  9:40 UTC (permalink / raw)
  To: Andreas Färber
  Cc: aliguori, mst, armbru, Jason Baron, agraf, qemu-devel, kraxel

Am 07.08.2012 18:13, schrieb Andreas Färber:
> Hi Jason,
> 
> Am 07.08.2012 18:01, schrieb Jason Baron:
>> Hi,
>>
>> vmstate_ahci has its 'unmigratable' bit set. Gerd suggested that there was work
>> in this area. Anybody know the status on it?
> 
> That was me working on it. I have a branch corresponding to an RFC I
> sent around Christmas - issue being how to model the variable number of
> ports in VMSD - that I need to update to the latest suggestion by Igor.
> 
> Jason/Kevin, should I prioritize that for 1.2? Or is that a -next topic?

Unless someone tries hard to convince me otherwise, I'd default to -next.

Kevin

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-08-09  9:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-07 16:01 [Qemu-devel] ahci live migration Jason Baron
2012-08-07 16:13 ` Andreas Färber
2012-08-07 16:20   ` Jason Baron
2012-08-08 19:49     ` Andreas Färber
2012-08-09  9:40   ` Kevin Wolf

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).