All of lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-14 20:28 ` Alex Williamson
  0 siblings, 0 replies; 18+ messages in thread
From: Alex Williamson @ 2010-06-14 20:28 UTC (permalink / raw)
  To: qemu-devel, anthony, blauwirbel; +Cc: kvm, quintela, alex.williamson

PCI hotplug currently doesn't work after a migration because
we don't migrate the enable bits of the GPE state.  Pull hotplug
structs into vmstate.

Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
---

 hw/acpi_piix4.c |   29 ++++++++++++++++++++++++++++-
 1 files changed, 28 insertions(+), 1 deletions(-)

diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c
index a87286b..8d1a628 100644
--- a/hw/acpi_piix4.c
+++ b/hw/acpi_piix4.c
@@ -283,9 +283,33 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
     return 0;
 }
 
+static const VMStateDescription vmstate_gpe = {
+    .name = "gpe",
+    .version_id = 1,
+    .minimum_version_id = 1,
+    .minimum_version_id_old = 1,
+    .fields      = (VMStateField []) {
+        VMSTATE_UINT16(sts, struct gpe_regs),
+        VMSTATE_UINT16(en, struct gpe_regs),
+        VMSTATE_END_OF_LIST()
+    }
+};
+
+static const VMStateDescription vmstate_pci_status = {
+    .name = "pci_status",
+    .version_id = 1,
+    .minimum_version_id = 1,
+    .minimum_version_id_old = 1,
+    .fields      = (VMStateField []) {
+        VMSTATE_UINT32(up, struct pci_status),
+        VMSTATE_UINT32(down, struct pci_status),
+        VMSTATE_END_OF_LIST()
+    }
+};
+
 static const VMStateDescription vmstate_acpi = {
     .name = "piix4_pm",
-    .version_id = 1,
+    .version_id = 2,
     .minimum_version_id = 1,
     .minimum_version_id_old = 1,
     .post_load = vmstate_acpi_post_load,
@@ -297,6 +321,9 @@ static const VMStateDescription vmstate_acpi = {
         VMSTATE_STRUCT(apm, PIIX4PMState, 0, vmstate_apm, APMState),
         VMSTATE_TIMER(tmr_timer, PIIX4PMState),
         VMSTATE_INT64(tmr_overflow_time, PIIX4PMState),
+        VMSTATE_STRUCT(gpe, PIIX4PMState, 2, vmstate_gpe, struct gpe_regs),
+        VMSTATE_STRUCT(pci0_status, PIIX4PMState, 2, vmstate_pci_status,
+                       struct pci_status),
         VMSTATE_END_OF_LIST()
     }
 };


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

* [Qemu-devel] [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-14 20:28 ` Alex Williamson
  0 siblings, 0 replies; 18+ messages in thread
From: Alex Williamson @ 2010-06-14 20:28 UTC (permalink / raw)
  To: qemu-devel, anthony, blauwirbel; +Cc: alex.williamson, kvm, quintela

PCI hotplug currently doesn't work after a migration because
we don't migrate the enable bits of the GPE state.  Pull hotplug
structs into vmstate.

Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
---

 hw/acpi_piix4.c |   29 ++++++++++++++++++++++++++++-
 1 files changed, 28 insertions(+), 1 deletions(-)

diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c
index a87286b..8d1a628 100644
--- a/hw/acpi_piix4.c
+++ b/hw/acpi_piix4.c
@@ -283,9 +283,33 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
     return 0;
 }
 
+static const VMStateDescription vmstate_gpe = {
+    .name = "gpe",
+    .version_id = 1,
+    .minimum_version_id = 1,
+    .minimum_version_id_old = 1,
+    .fields      = (VMStateField []) {
+        VMSTATE_UINT16(sts, struct gpe_regs),
+        VMSTATE_UINT16(en, struct gpe_regs),
+        VMSTATE_END_OF_LIST()
+    }
+};
+
+static const VMStateDescription vmstate_pci_status = {
+    .name = "pci_status",
+    .version_id = 1,
+    .minimum_version_id = 1,
+    .minimum_version_id_old = 1,
+    .fields      = (VMStateField []) {
+        VMSTATE_UINT32(up, struct pci_status),
+        VMSTATE_UINT32(down, struct pci_status),
+        VMSTATE_END_OF_LIST()
+    }
+};
+
 static const VMStateDescription vmstate_acpi = {
     .name = "piix4_pm",
-    .version_id = 1,
+    .version_id = 2,
     .minimum_version_id = 1,
     .minimum_version_id_old = 1,
     .post_load = vmstate_acpi_post_load,
@@ -297,6 +321,9 @@ static const VMStateDescription vmstate_acpi = {
         VMSTATE_STRUCT(apm, PIIX4PMState, 0, vmstate_apm, APMState),
         VMSTATE_TIMER(tmr_timer, PIIX4PMState),
         VMSTATE_INT64(tmr_overflow_time, PIIX4PMState),
+        VMSTATE_STRUCT(gpe, PIIX4PMState, 2, vmstate_gpe, struct gpe_regs),
+        VMSTATE_STRUCT(pci0_status, PIIX4PMState, 2, vmstate_pci_status,
+                       struct pci_status),
         VMSTATE_END_OF_LIST()
     }
 };

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

* Re: [Qemu-devel] [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
  2010-06-14 20:28 ` [Qemu-devel] " Alex Williamson
@ 2010-06-14 20:58   ` Anthony Liguori
  -1 siblings, 0 replies; 18+ messages in thread
From: Anthony Liguori @ 2010-06-14 20:58 UTC (permalink / raw)
  To: Alex Williamson; +Cc: qemu-devel, blauwirbel, kvm, quintela

On 06/14/2010 03:28 PM, Alex Williamson wrote:
> PCI hotplug currently doesn't work after a migration because
> we don't migrate the enable bits of the GPE state.  Pull hotplug
> structs into vmstate.
>
> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>    

Applied.  Thanks.

Regards,

Anthony Liguori
> ---
>
>   hw/acpi_piix4.c |   29 ++++++++++++++++++++++++++++-
>   1 files changed, 28 insertions(+), 1 deletions(-)
>
> diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c
> index a87286b..8d1a628 100644
> --- a/hw/acpi_piix4.c
> +++ b/hw/acpi_piix4.c
> @@ -283,9 +283,33 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
>       return 0;
>   }
>
> +static const VMStateDescription vmstate_gpe = {
> +    .name = "gpe",
> +    .version_id = 1,
> +    .minimum_version_id = 1,
> +    .minimum_version_id_old = 1,
> +    .fields      = (VMStateField []) {
> +        VMSTATE_UINT16(sts, struct gpe_regs),
> +        VMSTATE_UINT16(en, struct gpe_regs),
> +        VMSTATE_END_OF_LIST()
> +    }
> +};
> +
> +static const VMStateDescription vmstate_pci_status = {
> +    .name = "pci_status",
> +    .version_id = 1,
> +    .minimum_version_id = 1,
> +    .minimum_version_id_old = 1,
> +    .fields      = (VMStateField []) {
> +        VMSTATE_UINT32(up, struct pci_status),
> +        VMSTATE_UINT32(down, struct pci_status),
> +        VMSTATE_END_OF_LIST()
> +    }
> +};
> +
>   static const VMStateDescription vmstate_acpi = {
>       .name = "piix4_pm",
> -    .version_id = 1,
> +    .version_id = 2,
>       .minimum_version_id = 1,
>       .minimum_version_id_old = 1,
>       .post_load = vmstate_acpi_post_load,
> @@ -297,6 +321,9 @@ static const VMStateDescription vmstate_acpi = {
>           VMSTATE_STRUCT(apm, PIIX4PMState, 0, vmstate_apm, APMState),
>           VMSTATE_TIMER(tmr_timer, PIIX4PMState),
>           VMSTATE_INT64(tmr_overflow_time, PIIX4PMState),
> +        VMSTATE_STRUCT(gpe, PIIX4PMState, 2, vmstate_gpe, struct gpe_regs),
> +        VMSTATE_STRUCT(pci0_status, PIIX4PMState, 2, vmstate_pci_status,
> +                       struct pci_status),
>           VMSTATE_END_OF_LIST()
>       }
>   };
>
>
>
>    


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

* Re: [Qemu-devel] [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-14 20:58   ` Anthony Liguori
  0 siblings, 0 replies; 18+ messages in thread
From: Anthony Liguori @ 2010-06-14 20:58 UTC (permalink / raw)
  To: Alex Williamson; +Cc: blauwirbel, qemu-devel, kvm, quintela

On 06/14/2010 03:28 PM, Alex Williamson wrote:
> PCI hotplug currently doesn't work after a migration because
> we don't migrate the enable bits of the GPE state.  Pull hotplug
> structs into vmstate.
>
> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>    

Applied.  Thanks.

Regards,

Anthony Liguori
> ---
>
>   hw/acpi_piix4.c |   29 ++++++++++++++++++++++++++++-
>   1 files changed, 28 insertions(+), 1 deletions(-)
>
> diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c
> index a87286b..8d1a628 100644
> --- a/hw/acpi_piix4.c
> +++ b/hw/acpi_piix4.c
> @@ -283,9 +283,33 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
>       return 0;
>   }
>
> +static const VMStateDescription vmstate_gpe = {
> +    .name = "gpe",
> +    .version_id = 1,
> +    .minimum_version_id = 1,
> +    .minimum_version_id_old = 1,
> +    .fields      = (VMStateField []) {
> +        VMSTATE_UINT16(sts, struct gpe_regs),
> +        VMSTATE_UINT16(en, struct gpe_regs),
> +        VMSTATE_END_OF_LIST()
> +    }
> +};
> +
> +static const VMStateDescription vmstate_pci_status = {
> +    .name = "pci_status",
> +    .version_id = 1,
> +    .minimum_version_id = 1,
> +    .minimum_version_id_old = 1,
> +    .fields      = (VMStateField []) {
> +        VMSTATE_UINT32(up, struct pci_status),
> +        VMSTATE_UINT32(down, struct pci_status),
> +        VMSTATE_END_OF_LIST()
> +    }
> +};
> +
>   static const VMStateDescription vmstate_acpi = {
>       .name = "piix4_pm",
> -    .version_id = 1,
> +    .version_id = 2,
>       .minimum_version_id = 1,
>       .minimum_version_id_old = 1,
>       .post_load = vmstate_acpi_post_load,
> @@ -297,6 +321,9 @@ static const VMStateDescription vmstate_acpi = {
>           VMSTATE_STRUCT(apm, PIIX4PMState, 0, vmstate_apm, APMState),
>           VMSTATE_TIMER(tmr_timer, PIIX4PMState),
>           VMSTATE_INT64(tmr_overflow_time, PIIX4PMState),
> +        VMSTATE_STRUCT(gpe, PIIX4PMState, 2, vmstate_gpe, struct gpe_regs),
> +        VMSTATE_STRUCT(pci0_status, PIIX4PMState, 2, vmstate_pci_status,
> +                       struct pci_status),
>           VMSTATE_END_OF_LIST()
>       }
>   };
>
>
>
>    

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

* Re: [Qemu-devel] [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
  2010-06-14 20:58   ` Anthony Liguori
@ 2010-06-14 21:27     ` Alexander Graf
  -1 siblings, 0 replies; 18+ messages in thread
From: Alexander Graf @ 2010-06-14 21:27 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Alex Williamson, qemu-devel, blauwirbel, kvm, quintela


On 14.06.2010, at 22:58, Anthony Liguori wrote:

> On 06/14/2010 03:28 PM, Alex Williamson wrote:
>> PCI hotplug currently doesn't work after a migration because
>> we don't migrate the enable bits of the GPE state.  Pull hotplug
>> structs into vmstate.
>> 
>> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>>   
> 
> Applied.  Thanks.

Is this stable material?

Alex


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

* Re: [Qemu-devel] [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-14 21:27     ` Alexander Graf
  0 siblings, 0 replies; 18+ messages in thread
From: Alexander Graf @ 2010-06-14 21:27 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: blauwirbel, Alex Williamson, qemu-devel, kvm, quintela


On 14.06.2010, at 22:58, Anthony Liguori wrote:

> On 06/14/2010 03:28 PM, Alex Williamson wrote:
>> PCI hotplug currently doesn't work after a migration because
>> we don't migrate the enable bits of the GPE state.  Pull hotplug
>> structs into vmstate.
>> 
>> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>>   
> 
> Applied.  Thanks.

Is this stable material?

Alex

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

* Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
  2010-06-14 20:58   ` Anthony Liguori
@ 2010-06-16 15:47     ` Juan Quintela
  -1 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2010-06-16 15:47 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Alex Williamson, qemu-devel, blauwirbel, kvm

Anthony Liguori <anthony@codemonkey.ws> wrote:
> On 06/14/2010 03:28 PM, Alex Williamson wrote:
>> PCI hotplug currently doesn't work after a migration because
>> we don't migrate the enable bits of the GPE state.  Pull hotplug
>> structs into vmstate.
>>
>> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>>    
>
> Applied.  Thanks.
>
> Regards,
>
> Anthony Liguori

I think this is better implemented as a subsection.  We didin't need
this until hotplug arrived, I think that checking if any up/down are
!= 0 and then send it as subsections is a best way to do it.

This way it could also be backported to stable.

Later, Juan.

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

* [Qemu-devel] Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-16 15:47     ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2010-06-16 15:47 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: blauwirbel, Alex Williamson, qemu-devel, kvm

Anthony Liguori <anthony@codemonkey.ws> wrote:
> On 06/14/2010 03:28 PM, Alex Williamson wrote:
>> PCI hotplug currently doesn't work after a migration because
>> we don't migrate the enable bits of the GPE state.  Pull hotplug
>> structs into vmstate.
>>
>> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>>    
>
> Applied.  Thanks.
>
> Regards,
>
> Anthony Liguori

I think this is better implemented as a subsection.  We didin't need
this until hotplug arrived, I think that checking if any up/down are
!= 0 and then send it as subsections is a best way to do it.

This way it could also be backported to stable.

Later, Juan.

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

* Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
  2010-06-16 15:47     ` [Qemu-devel] " Juan Quintela
@ 2010-06-16 16:28       ` Alex Williamson
  -1 siblings, 0 replies; 18+ messages in thread
From: Alex Williamson @ 2010-06-16 16:28 UTC (permalink / raw)
  To: Juan Quintela; +Cc: Anthony Liguori, qemu-devel, blauwirbel, kvm

On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
> Anthony Liguori <anthony@codemonkey.ws> wrote:
> > On 06/14/2010 03:28 PM, Alex Williamson wrote:
> >> PCI hotplug currently doesn't work after a migration because
> >> we don't migrate the enable bits of the GPE state.  Pull hotplug
> >> structs into vmstate.
> >>
> >> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
> >>    
> >
> > Applied.  Thanks.
> >
> > Regards,
> >
> > Anthony Liguori
> 
> I think this is better implemented as a subsection.  We didin't need
> this until hotplug arrived, I think that checking if any up/down are
> != 0 and then send it as subsections is a best way to do it.
> 
> This way it could also be backported to stable.

The slots aren't really the issue, they were mostly for completeness.
The key is gpe.en, which is likely always going to be all 1s for an ACPI
aware OS.  So if we test != 0, we're going to need that subsection in
99% of the cases.  Maybe we can assume gpe.en is all set on the target,
but I don't really look forward to finding out the ways that might
break.  Thanks,

Alex



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

* [Qemu-devel] Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-16 16:28       ` Alex Williamson
  0 siblings, 0 replies; 18+ messages in thread
From: Alex Williamson @ 2010-06-16 16:28 UTC (permalink / raw)
  To: Juan Quintela; +Cc: blauwirbel, qemu-devel, kvm

On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
> Anthony Liguori <anthony@codemonkey.ws> wrote:
> > On 06/14/2010 03:28 PM, Alex Williamson wrote:
> >> PCI hotplug currently doesn't work after a migration because
> >> we don't migrate the enable bits of the GPE state.  Pull hotplug
> >> structs into vmstate.
> >>
> >> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
> >>    
> >
> > Applied.  Thanks.
> >
> > Regards,
> >
> > Anthony Liguori
> 
> I think this is better implemented as a subsection.  We didin't need
> this until hotplug arrived, I think that checking if any up/down are
> != 0 and then send it as subsections is a best way to do it.
> 
> This way it could also be backported to stable.

The slots aren't really the issue, they were mostly for completeness.
The key is gpe.en, which is likely always going to be all 1s for an ACPI
aware OS.  So if we test != 0, we're going to need that subsection in
99% of the cases.  Maybe we can assume gpe.en is all set on the target,
but I don't really look forward to finding out the ways that might
break.  Thanks,

Alex

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

* Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
  2010-06-16 16:28       ` [Qemu-devel] " Alex Williamson
@ 2010-06-16 18:43         ` Juan Quintela
  -1 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2010-06-16 18:43 UTC (permalink / raw)
  To: Alex Williamson; +Cc: Anthony Liguori, qemu-devel, blauwirbel, kvm

Alex Williamson <alex.williamson@redhat.com> wrote:
> On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
>> Anthony Liguori <anthony@codemonkey.ws> wrote:
>> > On 06/14/2010 03:28 PM, Alex Williamson wrote:
>> >> PCI hotplug currently doesn't work after a migration because
>> >> we don't migrate the enable bits of the GPE state.  Pull hotplug
>> >> structs into vmstate.
>> >>
>> >> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>> >>    
>> >
>> > Applied.  Thanks.
>> >
>> > Regards,
>> >
>> > Anthony Liguori
>> 
>> I think this is better implemented as a subsection.  We didin't need
>> this until hotplug arrived, I think that checking if any up/down are
>> != 0 and then send it as subsections is a best way to do it.
>> 
>> This way it could also be backported to stable.
>
> The slots aren't really the issue, they were mostly for completeness.
> The key is gpe.en, which is likely always going to be all 1s for an ACPI
> aware OS.  So if we test != 0, we're going to need that subsection in
> 99% of the cases.  Maybe we can assume gpe.en is all set on the target,
> but I don't really look forward to finding out the ways that might
> break.  Thanks,

We have never sent it before.  That means that the default value (for
whatever value is it) should be working quite well.

But it is not my call.

Later, Juan.

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

* [Qemu-devel] Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-16 18:43         ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2010-06-16 18:43 UTC (permalink / raw)
  To: Alex Williamson; +Cc: blauwirbel, qemu-devel, kvm

Alex Williamson <alex.williamson@redhat.com> wrote:
> On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
>> Anthony Liguori <anthony@codemonkey.ws> wrote:
>> > On 06/14/2010 03:28 PM, Alex Williamson wrote:
>> >> PCI hotplug currently doesn't work after a migration because
>> >> we don't migrate the enable bits of the GPE state.  Pull hotplug
>> >> structs into vmstate.
>> >>
>> >> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>> >>    
>> >
>> > Applied.  Thanks.
>> >
>> > Regards,
>> >
>> > Anthony Liguori
>> 
>> I think this is better implemented as a subsection.  We didin't need
>> this until hotplug arrived, I think that checking if any up/down are
>> != 0 and then send it as subsections is a best way to do it.
>> 
>> This way it could also be backported to stable.
>
> The slots aren't really the issue, they were mostly for completeness.
> The key is gpe.en, which is likely always going to be all 1s for an ACPI
> aware OS.  So if we test != 0, we're going to need that subsection in
> 99% of the cases.  Maybe we can assume gpe.en is all set on the target,
> but I don't really look forward to finding out the ways that might
> break.  Thanks,

We have never sent it before.  That means that the default value (for
whatever value is it) should be working quite well.

But it is not my call.

Later, Juan.

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

* Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
  2010-06-16 18:43         ` [Qemu-devel] " Juan Quintela
@ 2010-06-16 18:46           ` Anthony Liguori
  -1 siblings, 0 replies; 18+ messages in thread
From: Anthony Liguori @ 2010-06-16 18:46 UTC (permalink / raw)
  To: Juan Quintela; +Cc: Alex Williamson, qemu-devel, blauwirbel, kvm

On 06/16/2010 01:43 PM, Juan Quintela wrote:
> Alex Williamson<alex.williamson@redhat.com>  wrote:
>    
>> On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
>>      
>>> Anthony Liguori<anthony@codemonkey.ws>  wrote:
>>>        
>>>> On 06/14/2010 03:28 PM, Alex Williamson wrote:
>>>>          
>>>>> PCI hotplug currently doesn't work after a migration because
>>>>> we don't migrate the enable bits of the GPE state.  Pull hotplug
>>>>> structs into vmstate.
>>>>>
>>>>> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>>>>>
>>>>>            
>>>> Applied.  Thanks.
>>>>
>>>> Regards,
>>>>
>>>> Anthony Liguori
>>>>          
>>> I think this is better implemented as a subsection.  We didin't need
>>> this until hotplug arrived, I think that checking if any up/down are
>>> != 0 and then send it as subsections is a best way to do it.
>>>
>>> This way it could also be backported to stable.
>>>        
>> The slots aren't really the issue, they were mostly for completeness.
>> The key is gpe.en, which is likely always going to be all 1s for an ACPI
>> aware OS.  So if we test != 0, we're going to need that subsection in
>> 99% of the cases.  Maybe we can assume gpe.en is all set on the target,
>> but I don't really look forward to finding out the ways that might
>> break.  Thanks,
>>      
> We have never sent it before.  That means that the default value (for
> whatever value is it) should be working quite well.
>
> But it is not my call.
>    

This sounds like a case where we're sending broken state so we need to 
bump the version number.  Subsections don't eliminate the need to bump 
version numbers when we fundamentally screw up.

Regards,

Anthony Liguori

> Later, Juan.
>    


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

* [Qemu-devel] Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-16 18:46           ` Anthony Liguori
  0 siblings, 0 replies; 18+ messages in thread
From: Anthony Liguori @ 2010-06-16 18:46 UTC (permalink / raw)
  To: Juan Quintela; +Cc: blauwirbel, Alex Williamson, qemu-devel, kvm

On 06/16/2010 01:43 PM, Juan Quintela wrote:
> Alex Williamson<alex.williamson@redhat.com>  wrote:
>    
>> On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
>>      
>>> Anthony Liguori<anthony@codemonkey.ws>  wrote:
>>>        
>>>> On 06/14/2010 03:28 PM, Alex Williamson wrote:
>>>>          
>>>>> PCI hotplug currently doesn't work after a migration because
>>>>> we don't migrate the enable bits of the GPE state.  Pull hotplug
>>>>> structs into vmstate.
>>>>>
>>>>> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>>>>>
>>>>>            
>>>> Applied.  Thanks.
>>>>
>>>> Regards,
>>>>
>>>> Anthony Liguori
>>>>          
>>> I think this is better implemented as a subsection.  We didin't need
>>> this until hotplug arrived, I think that checking if any up/down are
>>> != 0 and then send it as subsections is a best way to do it.
>>>
>>> This way it could also be backported to stable.
>>>        
>> The slots aren't really the issue, they were mostly for completeness.
>> The key is gpe.en, which is likely always going to be all 1s for an ACPI
>> aware OS.  So if we test != 0, we're going to need that subsection in
>> 99% of the cases.  Maybe we can assume gpe.en is all set on the target,
>> but I don't really look forward to finding out the ways that might
>> break.  Thanks,
>>      
> We have never sent it before.  That means that the default value (for
> whatever value is it) should be working quite well.
>
> But it is not my call.
>    

This sounds like a case where we're sending broken state so we need to 
bump the version number.  Subsections don't eliminate the need to bump 
version numbers when we fundamentally screw up.

Regards,

Anthony Liguori

> Later, Juan.
>    

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

* Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
  2010-06-16 18:43         ` [Qemu-devel] " Juan Quintela
@ 2010-06-16 19:14           ` Alex Williamson
  -1 siblings, 0 replies; 18+ messages in thread
From: Alex Williamson @ 2010-06-16 19:14 UTC (permalink / raw)
  To: Juan Quintela; +Cc: Anthony Liguori, qemu-devel, blauwirbel, kvm

On Wed, 2010-06-16 at 20:43 +0200, Juan Quintela wrote:
> Alex Williamson <alex.williamson@redhat.com> wrote:
> > On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
> >> Anthony Liguori <anthony@codemonkey.ws> wrote:
> >> > On 06/14/2010 03:28 PM, Alex Williamson wrote:
> >> >> PCI hotplug currently doesn't work after a migration because
> >> >> we don't migrate the enable bits of the GPE state.  Pull hotplug
> >> >> structs into vmstate.
> >> >>
> >> >> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
> >> >>    
> >> >
> >> > Applied.  Thanks.
> >> >
> >> > Regards,
> >> >
> >> > Anthony Liguori
> >> 
> >> I think this is better implemented as a subsection.  We didin't need
> >> this until hotplug arrived, I think that checking if any up/down are
> >> != 0 and then send it as subsections is a best way to do it.
> >> 
> >> This way it could also be backported to stable.
> >
> > The slots aren't really the issue, they were mostly for completeness.
> > The key is gpe.en, which is likely always going to be all 1s for an ACPI
> > aware OS.  So if we test != 0, we're going to need that subsection in
> > 99% of the cases.  Maybe we can assume gpe.en is all set on the target,
> > but I don't really look forward to finding out the ways that might
> > break.  Thanks,
> 
> We have never sent it before.  That means that the default value (for
> whatever value is it) should be working quite well.

The gpe.en bits back an ioport range that's poked by the guest via ACPI.
So the guest is the one telling ACPI "I enable you to send me this gpe".
When a hotplug event happens, we figure out which gpe line it would
toggle, set the matching gpe.sts bit, then if the OS has told us to
enable that bit, we send an interrupt.  The OS then masks gpe.en, checks
gpe.sts, preforms actions and clears the respective gpe.sts bits, then
re-enables gpe.en.  So, qemu never sets the bits, but if we decide to
clear (or set) them, we're interfering with how the OS expects them to
work.  I think we're screwed, we need to bump the rev.

Alex


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

* [Qemu-devel] Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-16 19:14           ` Alex Williamson
  0 siblings, 0 replies; 18+ messages in thread
From: Alex Williamson @ 2010-06-16 19:14 UTC (permalink / raw)
  To: Juan Quintela; +Cc: blauwirbel, qemu-devel, kvm

On Wed, 2010-06-16 at 20:43 +0200, Juan Quintela wrote:
> Alex Williamson <alex.williamson@redhat.com> wrote:
> > On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
> >> Anthony Liguori <anthony@codemonkey.ws> wrote:
> >> > On 06/14/2010 03:28 PM, Alex Williamson wrote:
> >> >> PCI hotplug currently doesn't work after a migration because
> >> >> we don't migrate the enable bits of the GPE state.  Pull hotplug
> >> >> structs into vmstate.
> >> >>
> >> >> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
> >> >>    
> >> >
> >> > Applied.  Thanks.
> >> >
> >> > Regards,
> >> >
> >> > Anthony Liguori
> >> 
> >> I think this is better implemented as a subsection.  We didin't need
> >> this until hotplug arrived, I think that checking if any up/down are
> >> != 0 and then send it as subsections is a best way to do it.
> >> 
> >> This way it could also be backported to stable.
> >
> > The slots aren't really the issue, they were mostly for completeness.
> > The key is gpe.en, which is likely always going to be all 1s for an ACPI
> > aware OS.  So if we test != 0, we're going to need that subsection in
> > 99% of the cases.  Maybe we can assume gpe.en is all set on the target,
> > but I don't really look forward to finding out the ways that might
> > break.  Thanks,
> 
> We have never sent it before.  That means that the default value (for
> whatever value is it) should be working quite well.

The gpe.en bits back an ioport range that's poked by the guest via ACPI.
So the guest is the one telling ACPI "I enable you to send me this gpe".
When a hotplug event happens, we figure out which gpe line it would
toggle, set the matching gpe.sts bit, then if the OS has told us to
enable that bit, we send an interrupt.  The OS then masks gpe.en, checks
gpe.sts, preforms actions and clears the respective gpe.sts bits, then
re-enables gpe.en.  So, qemu never sets the bits, but if we decide to
clear (or set) them, we're interfering with how the OS expects them to
work.  I think we're screwed, we need to bump the rev.

Alex

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

* Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
  2010-06-16 19:14           ` [Qemu-devel] " Alex Williamson
@ 2010-06-16 23:05             ` Juan Quintela
  -1 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2010-06-16 23:05 UTC (permalink / raw)
  To: Alex Williamson; +Cc: blauwirbel, qemu-devel, kvm

Alex Williamson <alex.williamson@redhat.com> wrote:
> On Wed, 2010-06-16 at 20:43 +0200, Juan Quintela wrote:
>> Alex Williamson <alex.williamson@redhat.com> wrote:
>> > On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
>> >> Anthony Liguori <anthony@codemonkey.ws> wrote:
>> >> > On 06/14/2010 03:28 PM, Alex Williamson wrote:
>> >> >> PCI hotplug currently doesn't work after a migration because
>> >> >> we don't migrate the enable bits of the GPE state.  Pull hotplug
>> >> >> structs into vmstate.
>> >> >>
>> >> >> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>> >> >>    
>> >> >
>> >> > Applied.  Thanks.
>> >> >
>> >> > Regards,
>> >> >
>> >> > Anthony Liguori
>> >> 
>> >> I think this is better implemented as a subsection.  We didin't need
>> >> this until hotplug arrived, I think that checking if any up/down are
>> >> != 0 and then send it as subsections is a best way to do it.
>> >> 
>> >> This way it could also be backported to stable.
>> >
>> > The slots aren't really the issue, they were mostly for completeness.
>> > The key is gpe.en, which is likely always going to be all 1s for an ACPI
>> > aware OS.  So if we test != 0, we're going to need that subsection in
>> > 99% of the cases.  Maybe we can assume gpe.en is all set on the target,
>> > but I don't really look forward to finding out the ways that might
>> > break.  Thanks,
>> 
>> We have never sent it before.  That means that the default value (for
>> whatever value is it) should be working quite well.
>
> The gpe.en bits back an ioport range that's poked by the guest via ACPI.
> So the guest is the one telling ACPI "I enable you to send me this gpe".
> When a hotplug event happens, we figure out which gpe line it would
> toggle, set the matching gpe.sts bit, then if the OS has told us to
> enable that bit, we send an interrupt.  The OS then masks gpe.en, checks
> gpe.sts, preforms actions and clears the respective gpe.sts bits, then
> re-enables gpe.en.  So, qemu never sets the bits, but if we decide to
> clear (or set) them, we're interfering with how the OS expects them to
> work.  I think we're screwed, we need to bump the rev.

Sniff.  I tried.  Cross version migration is such a nice thing :(

Later, Juan.

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

* [Qemu-devel] Re: [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status
@ 2010-06-16 23:05             ` Juan Quintela
  0 siblings, 0 replies; 18+ messages in thread
From: Juan Quintela @ 2010-06-16 23:05 UTC (permalink / raw)
  To: Alex Williamson; +Cc: blauwirbel, qemu-devel, kvm

Alex Williamson <alex.williamson@redhat.com> wrote:
> On Wed, 2010-06-16 at 20:43 +0200, Juan Quintela wrote:
>> Alex Williamson <alex.williamson@redhat.com> wrote:
>> > On Wed, 2010-06-16 at 17:47 +0200, Juan Quintela wrote:
>> >> Anthony Liguori <anthony@codemonkey.ws> wrote:
>> >> > On 06/14/2010 03:28 PM, Alex Williamson wrote:
>> >> >> PCI hotplug currently doesn't work after a migration because
>> >> >> we don't migrate the enable bits of the GPE state.  Pull hotplug
>> >> >> structs into vmstate.
>> >> >>
>> >> >> Signed-off-by: Alex Williamson<alex.williamson@redhat.com>
>> >> >>    
>> >> >
>> >> > Applied.  Thanks.
>> >> >
>> >> > Regards,
>> >> >
>> >> > Anthony Liguori
>> >> 
>> >> I think this is better implemented as a subsection.  We didin't need
>> >> this until hotplug arrived, I think that checking if any up/down are
>> >> != 0 and then send it as subsections is a best way to do it.
>> >> 
>> >> This way it could also be backported to stable.
>> >
>> > The slots aren't really the issue, they were mostly for completeness.
>> > The key is gpe.en, which is likely always going to be all 1s for an ACPI
>> > aware OS.  So if we test != 0, we're going to need that subsection in
>> > 99% of the cases.  Maybe we can assume gpe.en is all set on the target,
>> > but I don't really look forward to finding out the ways that might
>> > break.  Thanks,
>> 
>> We have never sent it before.  That means that the default value (for
>> whatever value is it) should be working quite well.
>
> The gpe.en bits back an ioport range that's poked by the guest via ACPI.
> So the guest is the one telling ACPI "I enable you to send me this gpe".
> When a hotplug event happens, we figure out which gpe line it would
> toggle, set the matching gpe.sts bit, then if the OS has told us to
> enable that bit, we send an interrupt.  The OS then masks gpe.en, checks
> gpe.sts, preforms actions and clears the respective gpe.sts bits, then
> re-enables gpe.en.  So, qemu never sets the bits, but if we decide to
> clear (or set) them, we're interfering with how the OS expects them to
> work.  I think we're screwed, we need to bump the rev.

Sniff.  I tried.  Cross version migration is such a nice thing :(

Later, Juan.

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

end of thread, other threads:[~2010-06-16 23:06 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-06-14 20:28 [RESEND PATCH] acpi_piix4: save gpe and pci hotplug slot status Alex Williamson
2010-06-14 20:28 ` [Qemu-devel] " Alex Williamson
2010-06-14 20:58 ` Anthony Liguori
2010-06-14 20:58   ` Anthony Liguori
2010-06-14 21:27   ` Alexander Graf
2010-06-14 21:27     ` Alexander Graf
2010-06-16 15:47   ` Juan Quintela
2010-06-16 15:47     ` [Qemu-devel] " Juan Quintela
2010-06-16 16:28     ` Alex Williamson
2010-06-16 16:28       ` [Qemu-devel] " Alex Williamson
2010-06-16 18:43       ` Juan Quintela
2010-06-16 18:43         ` [Qemu-devel] " Juan Quintela
2010-06-16 18:46         ` Anthony Liguori
2010-06-16 18:46           ` [Qemu-devel] " Anthony Liguori
2010-06-16 19:14         ` Alex Williamson
2010-06-16 19:14           ` [Qemu-devel] " Alex Williamson
2010-06-16 23:05           ` Juan Quintela
2010-06-16 23:05             ` [Qemu-devel] " Juan Quintela

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.