From 3176aa8a9515dcb7b60c8123f609dc3f84e57b57 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Wed, 1 Mar 2017 15:35:24 +0000 Subject: [PATCH] xen: include xen/types.h in domain.h The public header expects a few types to be present. This works in the code base only because types.h is included by some other headers which happen to be placed before the inclusion of domain.h. Include types.h before xen.h in domain.h to fix it properly. Signed-off-by: Wei Liu Acked-by: Jan Beulich --- xen/include/xen/domain.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xen/include/xen/domain.h b/xen/include/xen/domain.h index bce0ea1ea9..347f264047 100644 --- a/xen/include/xen/domain.h +++ b/xen/include/xen/domain.h @@ -2,6 +2,8 @@ #ifndef __XEN_DOMAIN_H__ #define __XEN_DOMAIN_H__ +#include + #include #include #include -- 2.39.5