>>> On 23.01.18 at 16:07, <roger....@citrix.com> wrote: > diff --git a/xen/arch/arm/xen.lds.S b/xen/arch/arm/xen.lds.S > index c9b9546435..98b82680c6 100644 > --- a/xen/arch/arm/xen.lds.S > +++ b/xen/arch/arm/xen.lds.S > @@ -65,6 +65,13 @@ SECTIONS > __param_start = .; > *(.data.param) > __param_end = .; > + > +#if defined(CONFIG_HAS_PCI) && defined(CONFIG_LATE_HWDOM) > + . = ALIGN(POINTER_ALIGN); > + __start_vpci_array = .; > + *(.data.vpci) > + __end_vpci_array = .; > +#endif > } :text > > #if defined(BUILD_ID) > @@ -173,6 +180,13 @@ SECTIONS > *(.init_array) > *(SORT(.init_array.*)) > __ctors_end = .; > + > +#if defined(CONFIG_HAS_PCI) && !defined(CONFIG_LATE_HWDOM) > + . = ALIGN(POINTER_ALIGN); > + __start_vpci_array = .; > + *(.data.vpci) > + __end_vpci_array = .; > +#endif > } :text > __init_end_efi = .; > . = ALIGN(STACK_SIZE);
Sadly you forgot to Cc the ARM maintainers. Stefano, Julien, the above would require your ack. Jan _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel