Re: [PATCH] Xen: include asm/page.h in xen-ops.h

2014-03-17 Thread Stefano Stabellini
On Sat, 15 Mar 2014, Arnd Bergmann wrote: > The declaration of xen_remap_domain_mfn_range relies on the > pgprot_t typedef to be visible. In some configurations, that > may not already have been seen, and I have encountered a > bug during randconfig testing on ARM. > > Adding an explicit #include

[PATCH] Xen: include asm/page.h in xen-ops.h

2014-03-15 Thread Arnd Bergmann
The declaration of xen_remap_domain_mfn_range relies on the pgprot_t typedef to be visible. In some configurations, that may not already have been seen, and I have encountered a bug during randconfig testing on ARM. Adding an explicit #include for asm/page.h fixes the problem. Signed-off-by: Arnd