All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hw/ppc/vof: Add missing includes
@ 2022-01-22  0:31 Philippe Mathieu-Daudé via
  2022-01-30 19:38 ` Philippe Mathieu-Daudé via
  0 siblings, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-01-22  0:31 UTC (permalink / raw)
  To: qemu-devel
  Cc: Cédric Le Goater, Daniel Henrique Barboza, Greg Kurz,
	qemu-ppc, David Gibson, Alexey Kardashevskiy,
	Philippe Mathieu-Daudé

vof.h requires "qom/object.h" for DECLARE_CLASS_CHECKERS(),
"exec/memory.h" for address_space_read/write(),
"exec/address-spaces.h" for address_space_memory
and more importantly "cpu.h" for target_ulong.

vof.c doesn't need "exec/ram_addr.h".

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 hw/ppc/vof.c         | 1 -
 include/hw/ppc/vof.h | 5 +++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/hw/ppc/vof.c b/hw/ppc/vof.c
index 73adc44ec2..2b63a62875 100644
--- a/hw/ppc/vof.c
+++ b/hw/ppc/vof.c
@@ -16,7 +16,6 @@
 #include "qemu/units.h"
 #include "qemu/log.h"
 #include "qapi/error.h"
-#include "exec/ram_addr.h"
 #include "exec/address-spaces.h"
 #include "hw/ppc/vof.h"
 #include "hw/ppc/fdt.h"
diff --git a/include/hw/ppc/vof.h b/include/hw/ppc/vof.h
index 97fdef758b..f8c0effcaf 100644
--- a/include/hw/ppc/vof.h
+++ b/include/hw/ppc/vof.h
@@ -6,6 +6,11 @@
 #ifndef HW_VOF_H
 #define HW_VOF_H
 
+#include "qom/object.h"
+#include "exec/address-spaces.h"
+#include "exec/memory.h"
+#include "cpu.h"
+
 typedef struct Vof {
     uint64_t top_addr; /* copied from rma_size */
     GArray *claimed; /* array of SpaprOfClaimed */
-- 
2.34.1



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

* Re: [PATCH] hw/ppc/vof: Add missing includes
  2022-01-22  0:31 [PATCH] hw/ppc/vof: Add missing includes Philippe Mathieu-Daudé via
@ 2022-01-30 19:38 ` Philippe Mathieu-Daudé via
  2022-01-31  7:45   ` Cédric Le Goater
  0 siblings, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-01-30 19:38 UTC (permalink / raw)
  To: qemu-devel
  Cc: Cédric Le Goater, Daniel Henrique Barboza, Greg Kurz,
	qemu-ppc, David Gibson, Alexey Kardashevskiy, qemu-trivial

Cc'ing qemu-trivial@

On 22/1/22 01:31, Philippe Mathieu-Daudé wrote:
> vof.h requires "qom/object.h" for DECLARE_CLASS_CHECKERS(),
> "exec/memory.h" for address_space_read/write(),
> "exec/address-spaces.h" for address_space_memory
> and more importantly "cpu.h" for target_ulong.
> 
> vof.c doesn't need "exec/ram_addr.h".
> 
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>   hw/ppc/vof.c         | 1 -
>   include/hw/ppc/vof.h | 5 +++++
>   2 files changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/ppc/vof.c b/hw/ppc/vof.c
> index 73adc44ec2..2b63a62875 100644
> --- a/hw/ppc/vof.c
> +++ b/hw/ppc/vof.c
> @@ -16,7 +16,6 @@
>   #include "qemu/units.h"
>   #include "qemu/log.h"
>   #include "qapi/error.h"
> -#include "exec/ram_addr.h"
>   #include "exec/address-spaces.h"
>   #include "hw/ppc/vof.h"
>   #include "hw/ppc/fdt.h"
> diff --git a/include/hw/ppc/vof.h b/include/hw/ppc/vof.h
> index 97fdef758b..f8c0effcaf 100644
> --- a/include/hw/ppc/vof.h
> +++ b/include/hw/ppc/vof.h
> @@ -6,6 +6,11 @@
>   #ifndef HW_VOF_H
>   #define HW_VOF_H
>   
> +#include "qom/object.h"
> +#include "exec/address-spaces.h"
> +#include "exec/memory.h"
> +#include "cpu.h"
> +
>   typedef struct Vof {
>       uint64_t top_addr; /* copied from rma_size */
>       GArray *claimed; /* array of SpaprOfClaimed */



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

* Re: [PATCH] hw/ppc/vof: Add missing includes
  2022-01-30 19:38 ` Philippe Mathieu-Daudé via
@ 2022-01-31  7:45   ` Cédric Le Goater
  2022-01-31 13:43     ` Philippe Mathieu-Daudé via
  0 siblings, 1 reply; 4+ messages in thread
From: Cédric Le Goater @ 2022-01-31  7:45 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel
  Cc: Alexey Kardashevskiy, Daniel Henrique Barboza, Greg Kurz,
	qemu-trivial, qemu-ppc, David Gibson

On 1/30/22 20:38, Philippe Mathieu-Daudé wrote:
> Cc'ing qemu-trivial@
>

It is queued in ppc-7.0. I should send a PR today or tomorrow.

Thanks,

C.

> On 22/1/22 01:31, Philippe Mathieu-Daudé wrote:
>> vof.h requires "qom/object.h" for DECLARE_CLASS_CHECKERS(),
>> "exec/memory.h" for address_space_read/write(),
>> "exec/address-spaces.h" for address_space_memory
>> and more importantly "cpu.h" for target_ulong.
>>
>> vof.c doesn't need "exec/ram_addr.h".
>>
>> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
>> ---
>>   hw/ppc/vof.c         | 1 -
>>   include/hw/ppc/vof.h | 5 +++++
>>   2 files changed, 5 insertions(+), 1 deletion(-)
>>
>> diff --git a/hw/ppc/vof.c b/hw/ppc/vof.c
>> index 73adc44ec2..2b63a62875 100644
>> --- a/hw/ppc/vof.c
>> +++ b/hw/ppc/vof.c
>> @@ -16,7 +16,6 @@
>>   #include "qemu/units.h"
>>   #include "qemu/log.h"
>>   #include "qapi/error.h"
>> -#include "exec/ram_addr.h"
>>   #include "exec/address-spaces.h"
>>   #include "hw/ppc/vof.h"
>>   #include "hw/ppc/fdt.h"
>> diff --git a/include/hw/ppc/vof.h b/include/hw/ppc/vof.h
>> index 97fdef758b..f8c0effcaf 100644
>> --- a/include/hw/ppc/vof.h
>> +++ b/include/hw/ppc/vof.h
>> @@ -6,6 +6,11 @@
>>   #ifndef HW_VOF_H
>>   #define HW_VOF_H
>> +#include "qom/object.h"
>> +#include "exec/address-spaces.h"
>> +#include "exec/memory.h"
>> +#include "cpu.h"
>> +
>>   typedef struct Vof {
>>       uint64_t top_addr; /* copied from rma_size */
>>       GArray *claimed; /* array of SpaprOfClaimed */
> 



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

* Re: [PATCH] hw/ppc/vof: Add missing includes
  2022-01-31  7:45   ` Cédric Le Goater
@ 2022-01-31 13:43     ` Philippe Mathieu-Daudé via
  0 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé via @ 2022-01-31 13:43 UTC (permalink / raw)
  To: Cédric Le Goater, qemu-devel
  Cc: Daniel Henrique Barboza, Greg Kurz, qemu-ppc, David Gibson,
	Alexey Kardashevskiy, qemu-trivial

On 31/1/22 08:45, Cédric Le Goater wrote:
> On 1/30/22 20:38, Philippe Mathieu-Daudé wrote:
>> Cc'ing qemu-trivial@
>>
> 
> It is queued in ppc-7.0. I should send a PR today or tomorrow.

Thanks!


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

end of thread, other threads:[~2022-01-31 14:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-22  0:31 [PATCH] hw/ppc/vof: Add missing includes Philippe Mathieu-Daudé via
2022-01-30 19:38 ` Philippe Mathieu-Daudé via
2022-01-31  7:45   ` Cédric Le Goater
2022-01-31 13:43     ` Philippe Mathieu-Daudé via

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.