diff mbox series

xen: fix xen.h build for CONFIG_XEN_PVH=y

Message ID 20221123131057.3864183-1-jani.nikula@intel.com (mailing list archive)
State Accepted
Commit 9c55b6d2046e678d1c64fbbf35e921ce62a17d8a
Headers show
Series xen: fix xen.h build for CONFIG_XEN_PVH=y | expand

Commit Message

Jani Nikula Nov. 23, 2022, 1:10 p.m. UTC
For CONFIG_XEN_PVH=y, xen.h uses bool before the type is known. Include
<linux/types.h> earlier.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 include/xen/xen.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Jürgen Groß Nov. 23, 2022, 2:53 p.m. UTC | #1
On 23.11.22 14:10, Jani Nikula wrote:
> For CONFIG_XEN_PVH=y, xen.h uses bool before the type is known. Include
> <linux/types.h> earlier.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Juergen Gross <jgross@suse.com>


Juergen
diff mbox series

Patch

diff --git a/include/xen/xen.h b/include/xen/xen.h
index a99bab817523..7adf59837c25 100644
--- a/include/xen/xen.h
+++ b/include/xen/xen.h
@@ -2,6 +2,8 @@ 
 #ifndef _XEN_XEN_H
 #define _XEN_XEN_H
 
+#include <linux/types.h>
+
 enum xen_domain_type {
 	XEN_NATIVE,		/* running on bare hardware    */
 	XEN_PV_DOMAIN,		/* running in a PV domain      */
@@ -25,8 +27,6 @@  extern bool xen_pvh;
 #define xen_hvm_domain()	(xen_domain_type == XEN_HVM_DOMAIN)
 #define xen_pvh_domain()	(xen_pvh)
 
-#include <linux/types.h>
-
 extern uint32_t xen_start_flags;
 
 #include <xen/interface/hvm/start_info.h>