On 06.12.2024 05:41, Denis Mukhin via B4 Relay wrote: > --- a/xen/arch/x86/include/asm/domain.h > +++ b/xen/arch/x86/include/asm/domain.h > @@ -506,6 +506,9 @@ struct arch_domain > #define has_pirq(d) (!!((d)->arch.emulation_flags & X86_EMU_USE_PIRQ)) > #define has_vpci(d) (!!((d)->arch.emulation_flags & X86_EMU_VPCI)) > > +/* NB: same symbol as in Arm port */ > +#define domain_has_vuart(d) false
This being the 3rd effectively identical patch, perhaps instead we want to default domain_has_vuart() to false unless an arch provides its own definition? Much like we do for a few other such items? Jan