qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] spapr: fix RTAS method name in comment
@ 2017-10-04  8:43 Greg Kurz
  2017-10-04  9:42 ` David Gibson
  0 siblings, 1 reply; 3+ messages in thread
From: Greg Kurz @ 2017-10-04  8:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-ppc, David Gibson, Michael Roth

Signed-off-by: Greg Kurz <groug@kaod.org>
---
 hw/ppc/spapr.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 352ff3d614e8..b284e0b9d43e 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -2334,7 +2334,8 @@ static void ppc_spapr_init(MachineState *machine)
     /* Set up Interrupt Controller before we create the VCPUs */
     xics_system_init(machine, XICS_IRQS_SPAPR, &error_fatal);
 
-    /* Set up containers for ibm,client-set-architecture negotiated options */
+    /* Set up containers for ibm,client-architecture-support negotiated options
+     */
     spapr->ov5 = spapr_ovec_new();
     spapr->ov5_cas = spapr_ovec_new();
 

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

* Re: [Qemu-devel] [PATCH] spapr: fix RTAS method name in comment
  2017-10-04  8:43 [Qemu-devel] [PATCH] spapr: fix RTAS method name in comment Greg Kurz
@ 2017-10-04  9:42 ` David Gibson
  2017-10-04 12:33   ` Greg Kurz
  0 siblings, 1 reply; 3+ messages in thread
From: David Gibson @ 2017-10-04  9:42 UTC (permalink / raw)
  To: Greg Kurz; +Cc: qemu-devel, qemu-ppc, Michael Roth

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

On Wed, Oct 04, 2017 at 10:43:18AM +0200, Greg Kurz wrote:
> Signed-off-by: Greg Kurz <groug@kaod.org>

Applied, except I corrected the short description.
ibm,client-architecture-support is an OF word, not actually an RTAS
method.

> ---
>  hw/ppc/spapr.c |    3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> index 352ff3d614e8..b284e0b9d43e 100644
> --- a/hw/ppc/spapr.c
> +++ b/hw/ppc/spapr.c
> @@ -2334,7 +2334,8 @@ static void ppc_spapr_init(MachineState *machine)
>      /* Set up Interrupt Controller before we create the VCPUs */
>      xics_system_init(machine, XICS_IRQS_SPAPR, &error_fatal);
>  
> -    /* Set up containers for ibm,client-set-architecture negotiated options */
> +    /* Set up containers for ibm,client-architecture-support negotiated options
> +     */
>      spapr->ov5 = spapr_ovec_new();
>      spapr->ov5_cas = spapr_ovec_new();
>  
> 

-- 
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] 3+ messages in thread

* Re: [Qemu-devel] [PATCH] spapr: fix RTAS method name in comment
  2017-10-04  9:42 ` David Gibson
@ 2017-10-04 12:33   ` Greg Kurz
  0 siblings, 0 replies; 3+ messages in thread
From: Greg Kurz @ 2017-10-04 12:33 UTC (permalink / raw)
  To: David Gibson; +Cc: qemu-ppc, qemu-devel, Michael Roth

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

On Wed, 4 Oct 2017 20:42:26 +1100
David Gibson <david@gibson.dropbear.id.au> wrote:

> On Wed, Oct 04, 2017 at 10:43:18AM +0200, Greg Kurz wrote:
> > Signed-off-by: Greg Kurz <groug@kaod.org>  
> 
> Applied, except I corrected the short description.
> ibm,client-architecture-support is an OF word, not actually an RTAS
> method.
> 

Oops you're right... not quite sure what I was thinking to when I wrote
that :)

> > ---
> >  hw/ppc/spapr.c |    3 ++-
> >  1 file changed, 2 insertions(+), 1 deletion(-)
> > 
> > diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> > index 352ff3d614e8..b284e0b9d43e 100644
> > --- a/hw/ppc/spapr.c
> > +++ b/hw/ppc/spapr.c
> > @@ -2334,7 +2334,8 @@ static void ppc_spapr_init(MachineState *machine)
> >      /* Set up Interrupt Controller before we create the VCPUs */
> >      xics_system_init(machine, XICS_IRQS_SPAPR, &error_fatal);
> >  
> > -    /* Set up containers for ibm,client-set-architecture negotiated options */
> > +    /* Set up containers for ibm,client-architecture-support negotiated options
> > +     */
> >      spapr->ov5 = spapr_ovec_new();
> >      spapr->ov5_cas = spapr_ovec_new();
> >  
> >   
> 


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

end of thread, other threads:[~2017-10-04 12:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-04  8:43 [Qemu-devel] [PATCH] spapr: fix RTAS method name in comment Greg Kurz
2017-10-04  9:42 ` David Gibson
2017-10-04 12:33   ` Greg Kurz

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