qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH-for-9.1?] qapi/util: Include missing 'qapi/error.h' header
@ 2024-08-06 12:41 Philippe Mathieu-Daudé
  2024-08-06 14:32 ` Richard Henderson
  0 siblings, 1 reply; 2+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-08-06 12:41 UTC (permalink / raw)
  To: qemu-devel; +Cc: Michael Roth, Markus Armbruster, Philippe Mathieu-Daudé

qapi_enum_parse() uses the Error type which is
declared in "qapi/error.h". Include "qapi/error.h"
in order to avoid:

  include/qapi/util.h:27:30: error: unknown type name 'Error'
                    int def, Error **errp);
                             ^

Note we include it after the QEnumLookup declaration
to avoid:

  In file included from include/qapi/error.h:275:
  qapi/qapi-types-error.h:30:14: error: unknown type name 'QEnumLookup'
  extern const QEnumLookup QapiErrorClass_lookup;
               ^

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 include/qapi/util.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/qapi/util.h b/include/qapi/util.h
index b8254247b8..568f31ac9e 100644
--- a/include/qapi/util.h
+++ b/include/qapi/util.h
@@ -22,6 +22,8 @@ typedef struct QEnumLookup {
     const int size;
 } QEnumLookup;
 
+#include "qapi/error.h"
+
 const char *qapi_enum_lookup(const QEnumLookup *lookup, int val);
 int qapi_enum_parse(const QEnumLookup *lookup, const char *buf,
                     int def, Error **errp);
-- 
2.45.2



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

* Re: [PATCH-for-9.1?] qapi/util: Include missing 'qapi/error.h' header
  2024-08-06 12:41 [PATCH-for-9.1?] qapi/util: Include missing 'qapi/error.h' header Philippe Mathieu-Daudé
@ 2024-08-06 14:32 ` Richard Henderson
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Henderson @ 2024-08-06 14:32 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel; +Cc: Michael Roth, Markus Armbruster

On 8/6/24 22:41, Philippe Mathieu-Daudé wrote:
> qapi_enum_parse() uses the Error type which is
> declared in "qapi/error.h". Include "qapi/error.h"
> in order to avoid:
> 
>    include/qapi/util.h:27:30: error: unknown type name 'Error'
>                      int def, Error **errp);
>                               ^
> 
> Note we include it after the QEnumLookup declaration
> to avoid:
> 
>    In file included from include/qapi/error.h:275:
>    qapi/qapi-types-error.h:30:14: error: unknown type name 'QEnumLookup'
>    extern const QEnumLookup QapiErrorClass_lookup;
>                 ^
> 
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
>   include/qapi/util.h | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/include/qapi/util.h b/include/qapi/util.h
> index b8254247b8..568f31ac9e 100644
> --- a/include/qapi/util.h
> +++ b/include/qapi/util.h
> @@ -22,6 +22,8 @@ typedef struct QEnumLookup {
>       const int size;
>   } QEnumLookup;
>   
> +#include "qapi/error.h"
> +
>   const char *qapi_enum_lookup(const QEnumLookup *lookup, int val);
>   int qapi_enum_parse(const QEnumLookup *lookup, const char *buf,
>                       int def, Error **errp);

Error is in qemu/typedefs.h, which is included from qemu/osdeps.h, which is always first.

There is should be no need for this patch.  Why do you think it is needed?


r~


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

end of thread, other threads:[~2024-08-06 14:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-06 12:41 [PATCH-for-9.1?] qapi/util: Include missing 'qapi/error.h' header Philippe Mathieu-Daudé
2024-08-06 14:32 ` Richard Henderson

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