On 08.08.2024 14:09, Ayan Kumar Halder wrote: > domain_page.c has been moved to mmu/domain_page.c. The reason > being this file implements MMU specific logic for mapping, > unmapping, etc domain page. > > Signed-off-by: Ayan Kumar Halder <ayan.kumar.hal...@amd.com> > --- > xen/arch/arm/mmu/Makefile | 1 + > xen/arch/arm/{ => mmu}/domain_page.c | 0 > 2 files changed, 1 insertion(+) > rename xen/arch/arm/{ => mmu}/domain_page.c (100%) > > diff --git a/xen/arch/arm/mmu/Makefile b/xen/arch/arm/mmu/Makefile > index 67475fcd80..2cb44b857d 100644 > --- a/xen/arch/arm/mmu/Makefile > +++ b/xen/arch/arm/mmu/Makefile > @@ -2,3 +2,4 @@ obj-y += p2m.o > obj-y += pt.o > obj-y += setup.o > obj-y += smpboot.o > +obj-$(CONFIG_ARCH_MAP_DOMAIN_PAGE) += domain_page.o
Don't you then also need to remove the respective line from arm/Makefile? Jan