On Mon, 2 Oct 2023, Nicola Vetrini wrote: > The declarations for {create,replace}_grant_p2m_mapping are > not visible when these functions are defined, therefore the right > header needs to be included to allow them to be visible. > > Signed-off-by: Nicola Vetrini <nicola.vetr...@bugseng.com> > --- > xen/arch/x86/hvm/grant_table.c | 3 +-- > xen/arch/x86/include/asm/hvm/grant_table.h | 2 ++ > 2 files changed, 3 insertions(+), 2 deletions(-) > > diff --git a/xen/arch/x86/hvm/grant_table.c b/xen/arch/x86/hvm/grant_table.c > index 30d51d54a949..afe449d8882c 100644 > --- a/xen/arch/x86/hvm/grant_table.c > +++ b/xen/arch/x86/hvm/grant_table.c > @@ -9,8 +9,7 @@ > > #include <xen/types.h> > > -#include <public/grant_table.h> > - > +#include <asm/hvm/grant_table.h> > #include <asm/p2m.h>
This makes sense... > int create_grant_p2m_mapping(uint64_t addr, mfn_t frame, > diff --git a/xen/arch/x86/include/asm/hvm/grant_table.h > b/xen/arch/x86/include/asm/hvm/grant_table.h > index 33c1da1a25f3..576aeb50adf4 100644 > --- a/xen/arch/x86/include/asm/hvm/grant_table.h > +++ b/xen/arch/x86/include/asm/hvm/grant_table.h > @@ -10,6 +10,8 @@ > #ifndef __X86_HVM_GRANT_TABLE_H__ > #define __X86_HVM_GRANT_TABLE_H__ > > +#include <asm/paging.h> ... but I don't understand this one. It doesn't look like asm/hvm/grant_table.h actually needs asm/paging.h ? Maybe it should be included in xen/arch/x86/hvm/grant_table.c instead ? > #ifdef CONFIG_HVM > > int create_grant_p2m_mapping(uint64_t addr, mfn_t frame, > -- > 2.34.1 >