qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH qemu] spapr: Fix typo in the patb_entry comment
@ 2021-02-25  3:23 Alexey Kardashevskiy
  2021-02-25 14:37 ` Daniel Henrique Barboza
  2021-03-22  5:44 ` David Gibson
  0 siblings, 2 replies; 5+ messages in thread
From: Alexey Kardashevskiy @ 2021-02-25  3:23 UTC (permalink / raw)
  To: qemu-devel; +Cc: Alexey Kardashevskiy, qemu-ppc

There is no H_REGISTER_PROCESS_TABLE, it is H_REGISTER_PROC_TBL handler
for which is still called h_register_process_table() though.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
 include/hw/ppc/spapr.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
index ccbeeca1de84..8dceace4b442 100644
--- a/include/hw/ppc/spapr.h
+++ b/include/hw/ppc/spapr.h
@@ -168,7 +168,7 @@ struct SpaprMachineState {
     SpaprResizeHpt resize_hpt;
     void *htab;
     uint32_t htab_shift;
-    uint64_t patb_entry; /* Process tbl registed in H_REGISTER_PROCESS_TABLE */
+    uint64_t patb_entry; /* Process tbl registed in H_REGISTER_PROC_TBL */
     SpaprPendingHpt *pending_hpt; /* in-progress resize */
 
     hwaddr rma_size;
-- 
2.17.1



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

* Re: [PATCH qemu] spapr: Fix typo in the patb_entry comment
  2021-02-25  3:23 [PATCH qemu] spapr: Fix typo in the patb_entry comment Alexey Kardashevskiy
@ 2021-02-25 14:37 ` Daniel Henrique Barboza
  2021-03-22  5:44 ` David Gibson
  1 sibling, 0 replies; 5+ messages in thread
From: Daniel Henrique Barboza @ 2021-02-25 14:37 UTC (permalink / raw)
  To: Alexey Kardashevskiy, qemu-devel; +Cc: qemu-ppc



On 2/25/21 12:23 AM, Alexey Kardashevskiy wrote:
> There is no H_REGISTER_PROCESS_TABLE, it is H_REGISTER_PROC_TBL handler
> for which is still called h_register_process_table() though.
> 
> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
> ---

Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>

>   include/hw/ppc/spapr.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
> index ccbeeca1de84..8dceace4b442 100644
> --- a/include/hw/ppc/spapr.h
> +++ b/include/hw/ppc/spapr.h
> @@ -168,7 +168,7 @@ struct SpaprMachineState {
>       SpaprResizeHpt resize_hpt;
>       void *htab;
>       uint32_t htab_shift;
> -    uint64_t patb_entry; /* Process tbl registed in H_REGISTER_PROCESS_TABLE */
> +    uint64_t patb_entry; /* Process tbl registed in H_REGISTER_PROC_TBL */
>       SpaprPendingHpt *pending_hpt; /* in-progress resize */
>   
>       hwaddr rma_size;
> 


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

* Re: [PATCH qemu] spapr: Fix typo in the patb_entry comment
  2021-02-25  3:23 [PATCH qemu] spapr: Fix typo in the patb_entry comment Alexey Kardashevskiy
  2021-02-25 14:37 ` Daniel Henrique Barboza
@ 2021-03-22  5:44 ` David Gibson
  2021-03-24  4:30   ` Alexey Kardashevskiy
  1 sibling, 1 reply; 5+ messages in thread
From: David Gibson @ 2021-03-22  5:44 UTC (permalink / raw)
  To: Alexey Kardashevskiy; +Cc: qemu-ppc, qemu-devel

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

On Thu, Feb 25, 2021 at 02:23:35PM +1100, Alexey Kardashevskiy wrote:
> There is no H_REGISTER_PROCESS_TABLE, it is H_REGISTER_PROC_TBL handler
> for which is still called h_register_process_table() though.
> 
> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>

Applied to ppc-for-6.0.

In future, best to CC me directly, since I only occasionally peruse
the lists.

> ---
>  include/hw/ppc/spapr.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
> index ccbeeca1de84..8dceace4b442 100644
> --- a/include/hw/ppc/spapr.h
> +++ b/include/hw/ppc/spapr.h
> @@ -168,7 +168,7 @@ struct SpaprMachineState {
>      SpaprResizeHpt resize_hpt;
>      void *htab;
>      uint32_t htab_shift;
> -    uint64_t patb_entry; /* Process tbl registed in H_REGISTER_PROCESS_TABLE */
> +    uint64_t patb_entry; /* Process tbl registed in H_REGISTER_PROC_TBL */
>      SpaprPendingHpt *pending_hpt; /* in-progress resize */
>  
>      hwaddr rma_size;

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

* Re: [PATCH qemu] spapr: Fix typo in the patb_entry comment
  2021-03-22  5:44 ` David Gibson
@ 2021-03-24  4:30   ` Alexey Kardashevskiy
  2021-03-24  6:15     ` David Gibson
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Kardashevskiy @ 2021-03-24  4:30 UTC (permalink / raw)
  To: David Gibson; +Cc: qemu-ppc, qemu-devel



On 22/03/2021 16:44, David Gibson wrote:
> On Thu, Feb 25, 2021 at 02:23:35PM +1100, Alexey Kardashevskiy wrote:
>> There is no H_REGISTER_PROCESS_TABLE, it is H_REGISTER_PROC_TBL handler
>> for which is still called h_register_process_table() though.
>>
>> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
> 
> Applied to ppc-for-6.0.
> 
> In future, best to CC me directly, since I only occasionally peruse
> the lists.



even the qemu-ppc@nongnu.org list? okay :)



>> ---
>>   include/hw/ppc/spapr.h | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/include/hw/ppc/spapr.h b/include/hw/ppc/spapr.h
>> index ccbeeca1de84..8dceace4b442 100644
>> --- a/include/hw/ppc/spapr.h
>> +++ b/include/hw/ppc/spapr.h
>> @@ -168,7 +168,7 @@ struct SpaprMachineState {
>>       SpaprResizeHpt resize_hpt;
>>       void *htab;
>>       uint32_t htab_shift;
>> -    uint64_t patb_entry; /* Process tbl registed in H_REGISTER_PROCESS_TABLE */
>> +    uint64_t patb_entry; /* Process tbl registed in H_REGISTER_PROC_TBL */
>>       SpaprPendingHpt *pending_hpt; /* in-progress resize */
>>   
>>       hwaddr rma_size;
> 

-- 
Alexey


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

* Re: [PATCH qemu] spapr: Fix typo in the patb_entry comment
  2021-03-24  4:30   ` Alexey Kardashevskiy
@ 2021-03-24  6:15     ` David Gibson
  0 siblings, 0 replies; 5+ messages in thread
From: David Gibson @ 2021-03-24  6:15 UTC (permalink / raw)
  To: Alexey Kardashevskiy; +Cc: qemu-ppc, qemu-devel

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

On Wed, Mar 24, 2021 at 03:30:57PM +1100, Alexey Kardashevskiy wrote:
> 
> 
> On 22/03/2021 16:44, David Gibson wrote:
> > On Thu, Feb 25, 2021 at 02:23:35PM +1100, Alexey Kardashevskiy wrote:
> > > There is no H_REGISTER_PROCESS_TABLE, it is H_REGISTER_PROC_TBL handler
> > > for which is still called h_register_process_table() though.
> > > 
> > > Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
> > 
> > Applied to ppc-for-6.0.
> > 
> > In future, best to CC me directly, since I only occasionally peruse
> > the lists.
> 
> 
> 
> even the qemu-ppc@nongnu.org list? okay :)

Yes.  I do try to read qemu-ppc@nongnu.org weekly, but it's still easy
for me to miss things.

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

end of thread, other threads:[~2021-03-24  7:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-25  3:23 [PATCH qemu] spapr: Fix typo in the patb_entry comment Alexey Kardashevskiy
2021-02-25 14:37 ` Daniel Henrique Barboza
2021-03-22  5:44 ` David Gibson
2021-03-24  4:30   ` Alexey Kardashevskiy
2021-03-24  6:15     ` David Gibson

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