qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
@ 2018-07-27 12:31 Dr. David Alan Gilbert (git)
  2018-07-27 12:38 ` Mark Cave-Ayland
  2018-07-27 12:51 ` Laurent Vivier
  0 siblings, 2 replies; 9+ messages in thread
From: Dr. David Alan Gilbert (git) @ 2018-07-27 12:31 UTC (permalink / raw)
  To: qemu-devel, mark.cave-ayland, agraf, lvivier

From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>

Fix missing terminator in VMStateDescription

Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
---
 hw/misc/macio/pmu.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
index e246b0fd41..27dfaf8a74 100644
--- a/hw/misc/macio/pmu.c
+++ b/hw/misc/macio/pmu.c
@@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
         VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
         VMSTATE_UINT8(adb_reply_size, PMUState),
         VMSTATE_BUFFER(adb_reply, PMUState),
+        VMSTATE_END_OF_LIST()
     }
 };
 
-- 
2.17.1

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

* Re: [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
  2018-07-27 12:31 [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator Dr. David Alan Gilbert (git)
@ 2018-07-27 12:38 ` Mark Cave-Ayland
  2018-07-27 13:44   ` Dr. David Alan Gilbert
  2018-07-27 12:51 ` Laurent Vivier
  1 sibling, 1 reply; 9+ messages in thread
From: Mark Cave-Ayland @ 2018-07-27 12:38 UTC (permalink / raw)
  To: Dr. David Alan Gilbert (git), qemu-devel, agraf, lvivier

On 27/07/18 13:31, Dr. David Alan Gilbert (git) wrote:

> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> Fix missing terminator in VMStateDescription
> 
> Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>   hw/misc/macio/pmu.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
> index e246b0fd41..27dfaf8a74 100644
> --- a/hw/misc/macio/pmu.c
> +++ b/hw/misc/macio/pmu.c
> @@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
>           VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
>           VMSTATE_UINT8(adb_reply_size, PMUState),
>           VMSTATE_BUFFER(adb_reply, PMUState),
> +        VMSTATE_END_OF_LIST()
>       }
>   };

Gah, yes indeed it certainly looks like I missed this whilst working on 
the PMU code :(

Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>

Just out of interest does a savevm/loadvm migration still succeed once 
this has been added?


ATB,

Mark.

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

* Re: [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
  2018-07-27 12:31 [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator Dr. David Alan Gilbert (git)
  2018-07-27 12:38 ` Mark Cave-Ayland
@ 2018-07-27 12:51 ` Laurent Vivier
  1 sibling, 0 replies; 9+ messages in thread
From: Laurent Vivier @ 2018-07-27 12:51 UTC (permalink / raw)
  To: Dr. David Alan Gilbert (git), qemu-devel, mark.cave-ayland, agraf

On 27/07/2018 14:31, Dr. David Alan Gilbert (git) wrote:
> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> 
> Fix missing terminator in VMStateDescription
> 
> Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce
> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
>  hw/misc/macio/pmu.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
> index e246b0fd41..27dfaf8a74 100644
> --- a/hw/misc/macio/pmu.c
> +++ b/hw/misc/macio/pmu.c
> @@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
>          VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
>          VMSTATE_UINT8(adb_reply_size, PMUState),
>          VMSTATE_BUFFER(adb_reply, PMUState),
> +        VMSTATE_END_OF_LIST()
>      }
>  };
>  
> 

Reviewed-by: Laurent Vivier <lvivier@redhat.com>

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

* Re: [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
  2018-07-27 12:38 ` Mark Cave-Ayland
@ 2018-07-27 13:44   ` Dr. David Alan Gilbert
  2018-07-27 15:10     ` Mark Cave-Ayland
  0 siblings, 1 reply; 9+ messages in thread
From: Dr. David Alan Gilbert @ 2018-07-27 13:44 UTC (permalink / raw)
  To: Mark Cave-Ayland; +Cc: qemu-devel, agraf, lvivier

* Mark Cave-Ayland (mark.cave-ayland@ilande.co.uk) wrote:
> On 27/07/18 13:31, Dr. David Alan Gilbert (git) wrote:
> 
> > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> > 
> > Fix missing terminator in VMStateDescription
> > 
> > Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce
> > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> > ---
> >   hw/misc/macio/pmu.c | 1 +
> >   1 file changed, 1 insertion(+)
> > 
> > diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
> > index e246b0fd41..27dfaf8a74 100644
> > --- a/hw/misc/macio/pmu.c
> > +++ b/hw/misc/macio/pmu.c
> > @@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
> >           VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
> >           VMSTATE_UINT8(adb_reply_size, PMUState),
> >           VMSTATE_BUFFER(adb_reply, PMUState),
> > +        VMSTATE_END_OF_LIST()
> >       }
> >   };
> 
> Gah, yes indeed it certainly looks like I missed this whilst working on the
> PMU code :(
> 
> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> 
> Just out of interest does a savevm/loadvm migration still succeed once this
> has been added?

Have you got a suggested command line to test it with?

Dave

> 
> ATB,
> 
> Mark.
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

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

* Re: [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
  2018-07-27 13:44   ` Dr. David Alan Gilbert
@ 2018-07-27 15:10     ` Mark Cave-Ayland
  2018-07-27 15:14       ` Dr. David Alan Gilbert
  0 siblings, 1 reply; 9+ messages in thread
From: Mark Cave-Ayland @ 2018-07-27 15:10 UTC (permalink / raw)
  To: Dr. David Alan Gilbert; +Cc: lvivier, qemu-devel, agraf

On 27/07/18 14:44, Dr. David Alan Gilbert wrote:

> * Mark Cave-Ayland (mark.cave-ayland@ilande.co.uk) wrote:
>> On 27/07/18 13:31, Dr. David Alan Gilbert (git) wrote:
>>
>>> From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
>>>
>>> Fix missing terminator in VMStateDescription
>>>
>>> Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce
>>> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
>>> ---
>>>    hw/misc/macio/pmu.c | 1 +
>>>    1 file changed, 1 insertion(+)
>>>
>>> diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
>>> index e246b0fd41..27dfaf8a74 100644
>>> --- a/hw/misc/macio/pmu.c
>>> +++ b/hw/misc/macio/pmu.c
>>> @@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
>>>            VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
>>>            VMSTATE_UINT8(adb_reply_size, PMUState),
>>>            VMSTATE_BUFFER(adb_reply, PMUState),
>>> +        VMSTATE_END_OF_LIST()
>>>        }
>>>    };
>>
>> Gah, yes indeed it certainly looks like I missed this whilst working on the
>> PMU code :(
>>
>> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
>>
>> Just out of interest does a savevm/loadvm migration still succeed once this
>> has been added?
> 
> Have you got a suggested command line to test it with?

I'm effectively AFK until tomorrow now, but just quickly:

$ ./qemu-system-ppc -M mac99,via=pmu

Note that PMU support is new for 3.0 so there shouldn't be any backward 
compatibility issue here.


ATB,

Mark.

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

* Re: [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
  2018-07-27 15:10     ` Mark Cave-Ayland
@ 2018-07-27 15:14       ` Dr. David Alan Gilbert
  2018-10-16 11:30         ` Dr. David Alan Gilbert
  0 siblings, 1 reply; 9+ messages in thread
From: Dr. David Alan Gilbert @ 2018-07-27 15:14 UTC (permalink / raw)
  To: Mark Cave-Ayland; +Cc: lvivier, qemu-devel, agraf

* Mark Cave-Ayland (mark.cave-ayland@ilande.co.uk) wrote:
> On 27/07/18 14:44, Dr. David Alan Gilbert wrote:
> 
> > * Mark Cave-Ayland (mark.cave-ayland@ilande.co.uk) wrote:
> > > On 27/07/18 13:31, Dr. David Alan Gilbert (git) wrote:
> > > 
> > > > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> > > > 
> > > > Fix missing terminator in VMStateDescription
> > > > 
> > > > Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce
> > > > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> > > > ---
> > > >    hw/misc/macio/pmu.c | 1 +
> > > >    1 file changed, 1 insertion(+)
> > > > 
> > > > diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
> > > > index e246b0fd41..27dfaf8a74 100644
> > > > --- a/hw/misc/macio/pmu.c
> > > > +++ b/hw/misc/macio/pmu.c
> > > > @@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
> > > >            VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
> > > >            VMSTATE_UINT8(adb_reply_size, PMUState),
> > > >            VMSTATE_BUFFER(adb_reply, PMUState),
> > > > +        VMSTATE_END_OF_LIST()
> > > >        }
> > > >    };
> > > 
> > > Gah, yes indeed it certainly looks like I missed this whilst working on the
> > > PMU code :(
> > > 
> > > Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> > > 
> > > Just out of interest does a savevm/loadvm migration still succeed once this
> > > has been added?
> > 
> > Have you got a suggested command line to test it with?
> 
> I'm effectively AFK until tomorrow now, but just quickly:
> 
> $ ./qemu-system-ppc -M mac99,via=pmu
> 
> Note that PMU support is new for 3.0 so there shouldn't be any backward
> compatibility issue here.

[root@virtlab414 try-64]# ./ppc-softmmu/qemu-system-ppc -M mac99,via=pmu -nographic /home/vms/dummy1.qcow2 
QEMU 2.12.50 monitor - type 'help' for more information
(qemu) ss>> et_property: NULL phandle

>> =============================================================
>> OpenBIOS 1.1 [Jun 18 2018 18:20]
>> Configuration device id QEMU version 1 machine id 1
>> CPUs: 1
>> Memory: 128M
>> UUID: 00000000-0000-0000-0000-000000000000
>> CPU type PowerPC,G4
milliseconds isn't unique.
saWelcome to OpenBIOS v1.1 built on Jun 18 2018 18:20
Trying hd:,\\:tbxi...
savTrying hd:,\ppc\bootinfo.txt...
Trying hd:,%BOOT...
saveNo valid state has been set by load or init-program


(qemu) 
  ok
0 >   ok
0 > (qemu) 
(qemu) savevm "frob"
(qemu) loadvm "frob"
(qemu) 
  ok
0 > 2 2 + . 4  ok

Looks OK to me.

Dave

> 
> ATB,
> 
> Mark.
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

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

* Re: [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
  2018-07-27 15:14       ` Dr. David Alan Gilbert
@ 2018-10-16 11:30         ` Dr. David Alan Gilbert
  2018-10-17  0:34           ` David Gibson
  0 siblings, 1 reply; 9+ messages in thread
From: Dr. David Alan Gilbert @ 2018-10-16 11:30 UTC (permalink / raw)
  To: Mark Cave-Ayland; +Cc: lvivier, qemu-devel, agraf, david


I noticed this hadn't got merged - who wants it?

Dave

* Dr. David Alan Gilbert (dgilbert@redhat.com) wrote:
> * Mark Cave-Ayland (mark.cave-ayland@ilande.co.uk) wrote:
> > On 27/07/18 14:44, Dr. David Alan Gilbert wrote:
> > 
> > > * Mark Cave-Ayland (mark.cave-ayland@ilande.co.uk) wrote:
> > > > On 27/07/18 13:31, Dr. David Alan Gilbert (git) wrote:
> > > > 
> > > > > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> > > > > 
> > > > > Fix missing terminator in VMStateDescription
> > > > > 
> > > > > Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce
> > > > > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> > > > > ---
> > > > >    hw/misc/macio/pmu.c | 1 +
> > > > >    1 file changed, 1 insertion(+)
> > > > > 
> > > > > diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
> > > > > index e246b0fd41..27dfaf8a74 100644
> > > > > --- a/hw/misc/macio/pmu.c
> > > > > +++ b/hw/misc/macio/pmu.c
> > > > > @@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
> > > > >            VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
> > > > >            VMSTATE_UINT8(adb_reply_size, PMUState),
> > > > >            VMSTATE_BUFFER(adb_reply, PMUState),
> > > > > +        VMSTATE_END_OF_LIST()
> > > > >        }
> > > > >    };
> > > > 
> > > > Gah, yes indeed it certainly looks like I missed this whilst working on the
> > > > PMU code :(
> > > > 
> > > > Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> > > > 
> > > > Just out of interest does a savevm/loadvm migration still succeed once this
> > > > has been added?
> > > 
> > > Have you got a suggested command line to test it with?
> > 
> > I'm effectively AFK until tomorrow now, but just quickly:
> > 
> > $ ./qemu-system-ppc -M mac99,via=pmu
> > 
> > Note that PMU support is new for 3.0 so there shouldn't be any backward
> > compatibility issue here.
> 
> [root@virtlab414 try-64]# ./ppc-softmmu/qemu-system-ppc -M mac99,via=pmu -nographic /home/vms/dummy1.qcow2 
> QEMU 2.12.50 monitor - type 'help' for more information
> (qemu) ss>> et_property: NULL phandle
> 
> >> =============================================================
> >> OpenBIOS 1.1 [Jun 18 2018 18:20]
> >> Configuration device id QEMU version 1 machine id 1
> >> CPUs: 1
> >> Memory: 128M
> >> UUID: 00000000-0000-0000-0000-000000000000
> >> CPU type PowerPC,G4
> milliseconds isn't unique.
> saWelcome to OpenBIOS v1.1 built on Jun 18 2018 18:20
> Trying hd:,\\:tbxi...
> savTrying hd:,\ppc\bootinfo.txt...
> Trying hd:,%BOOT...
> saveNo valid state has been set by load or init-program
> 
> 
> (qemu) 
>   ok
> 0 >   ok
> 0 > (qemu) 
> (qemu) savevm "frob"
> (qemu) loadvm "frob"
> (qemu) 
>   ok
> 0 > 2 2 + . 4  ok
> 
> Looks OK to me.
> 
> Dave
> 
> > 
> > ATB,
> > 
> > Mark.
> --
> Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
> 
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

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

* Re: [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
  2018-10-16 11:30         ` Dr. David Alan Gilbert
@ 2018-10-17  0:34           ` David Gibson
  2018-10-17 20:58             ` Mark Cave-Ayland
  0 siblings, 1 reply; 9+ messages in thread
From: David Gibson @ 2018-10-17  0:34 UTC (permalink / raw)
  To: Dr. David Alan Gilbert; +Cc: Mark Cave-Ayland, lvivier, qemu-devel, agraf

[-- Attachment #1: Type: text/plain, Size: 3555 bytes --]

On Tue, Oct 16, 2018 at 12:30:45PM +0100, Dr. David Alan Gilbert wrote:
> 
> I noticed this hadn't got merged - who wants it?

I think that's one for my tree, but I'm afraid I completely missed it
before.  It's generally best to CC me on ppc related patches,
otherwise I'm likely to lose them in the flood of qemu-devel.

Anyway, I dug it out of my archives and applied.

> 
> Dave
> 
> * Dr. David Alan Gilbert (dgilbert@redhat.com) wrote:
> > * Mark Cave-Ayland (mark.cave-ayland@ilande.co.uk) wrote:
> > > On 27/07/18 14:44, Dr. David Alan Gilbert wrote:
> > > 
> > > > * Mark Cave-Ayland (mark.cave-ayland@ilande.co.uk) wrote:
> > > > > On 27/07/18 13:31, Dr. David Alan Gilbert (git) wrote:
> > > > > 
> > > > > > From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
> > > > > > 
> > > > > > Fix missing terminator in VMStateDescription
> > > > > > 
> > > > > > Fixes: d811d61fbc6ca5f2be2185fd7cfa916e7ba613ce
> > > > > > Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> > > > > > ---
> > > > > >    hw/misc/macio/pmu.c | 1 +
> > > > > >    1 file changed, 1 insertion(+)
> > > > > > 
> > > > > > diff --git a/hw/misc/macio/pmu.c b/hw/misc/macio/pmu.c
> > > > > > index e246b0fd41..27dfaf8a74 100644
> > > > > > --- a/hw/misc/macio/pmu.c
> > > > > > +++ b/hw/misc/macio/pmu.c
> > > > > > @@ -686,6 +686,7 @@ static const VMStateDescription vmstate_pmu_adb = {
> > > > > >            VMSTATE_TIMER_PTR(adb_poll_timer, PMUState),
> > > > > >            VMSTATE_UINT8(adb_reply_size, PMUState),
> > > > > >            VMSTATE_BUFFER(adb_reply, PMUState),
> > > > > > +        VMSTATE_END_OF_LIST()
> > > > > >        }
> > > > > >    };
> > > > > 
> > > > > Gah, yes indeed it certainly looks like I missed this whilst working on the
> > > > > PMU code :(
> > > > > 
> > > > > Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> > > > > 
> > > > > Just out of interest does a savevm/loadvm migration still succeed once this
> > > > > has been added?
> > > > 
> > > > Have you got a suggested command line to test it with?
> > > 
> > > I'm effectively AFK until tomorrow now, but just quickly:
> > > 
> > > $ ./qemu-system-ppc -M mac99,via=pmu
> > > 
> > > Note that PMU support is new for 3.0 so there shouldn't be any backward
> > > compatibility issue here.
> > 
> > [root@virtlab414 try-64]# ./ppc-softmmu/qemu-system-ppc -M mac99,via=pmu -nographic /home/vms/dummy1.qcow2 
> > QEMU 2.12.50 monitor - type 'help' for more information
> > (qemu) ss>> et_property: NULL phandle
> > 
> > >> =============================================================
> > >> OpenBIOS 1.1 [Jun 18 2018 18:20]
> > >> Configuration device id QEMU version 1 machine id 1
> > >> CPUs: 1
> > >> Memory: 128M
> > >> UUID: 00000000-0000-0000-0000-000000000000
> > >> CPU type PowerPC,G4
> > milliseconds isn't unique.
> > saWelcome to OpenBIOS v1.1 built on Jun 18 2018 18:20
> > Trying hd:,\\:tbxi...
> > savTrying hd:,\ppc\bootinfo.txt...
> > Trying hd:,%BOOT...
> > saveNo valid state has been set by load or init-program
> > 
> > 
> > (qemu) 
> >   ok
> > 0 >   ok
> > 0 > (qemu) 
> > (qemu) savevm "frob"
> > (qemu) loadvm "frob"
> > (qemu) 
> >   ok
> > 0 > 2 2 + . 4  ok
> > 
> > Looks OK to me.
> > 
> > Dave
> > 
> > > 
> > > ATB,
> > > 
> > > Mark.

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator
  2018-10-17  0:34           ` David Gibson
@ 2018-10-17 20:58             ` Mark Cave-Ayland
  0 siblings, 0 replies; 9+ messages in thread
From: Mark Cave-Ayland @ 2018-10-17 20:58 UTC (permalink / raw)
  To: David Gibson, Dr. David Alan Gilbert; +Cc: lvivier, qemu-devel, agraf

On 17/10/2018 01:34, David Gibson wrote:

> On Tue, Oct 16, 2018 at 12:30:45PM +0100, Dr. David Alan Gilbert wrote:
>>
>> I noticed this hadn't got merged - who wants it?
> 
> I think that's one for my tree, but I'm afraid I completely missed it
> before.  It's generally best to CC me on ppc related patches,
> otherwise I'm likely to lose them in the flood of qemu-devel.
> 
> Anyway, I dug it out of my archives and applied.

Great - thanks David. Apologies for the delay in my response, I've been fairly flat
out recently so not much time for QEMU hacking.


ATB,

Mark.

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

end of thread, other threads:[~2018-10-17 20:58 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-27 12:31 [Qemu-devel] [PATCH] macio/pmu: Fix missing vmsd terminator Dr. David Alan Gilbert (git)
2018-07-27 12:38 ` Mark Cave-Ayland
2018-07-27 13:44   ` Dr. David Alan Gilbert
2018-07-27 15:10     ` Mark Cave-Ayland
2018-07-27 15:14       ` Dr. David Alan Gilbert
2018-10-16 11:30         ` Dr. David Alan Gilbert
2018-10-17  0:34           ` David Gibson
2018-10-17 20:58             ` Mark Cave-Ayland
2018-07-27 12:51 ` Laurent Vivier

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