Re: [Xen-devel] [PATCH] xen/efi: have a common runtime setup function

2019-10-01 Thread Jan Beulich
On 01.10.2019 10:25, Juergen Gross wrote: > @@ -281,4 +270,26 @@ void xen_efi_reset_system(int reset_type, efi_status_t > status, > BUG(); > } > } > -EXPORT_SYMBOL_GPL(xen_efi_reset_system); > + > +/* > + * Set XEN EFI runtime services function pointers. Other fields of struct

[PATCH] xen/efi: have a common runtime setup function

2019-10-01 Thread Juergen Gross
Today the EFI runtime functions are setup in architecture specific code (x86 and arm), with the functions themselves living in drivers/xen as they are not architecture dependent. As the setup is exactly the same for arm and x86 move the setup to drivers/xen, too. This at once removes the need to m