Re: [PATCH v5 03/10] x86: Replace arch-specific boot_domain with the common one

2025-07-07 Thread Alejandro Vallejo
On Thu Jul 3, 2025 at 8:04 AM CEST, Jan Beulich wrote: > On 02.07.2025 17:34, Alejandro Vallejo wrote: >> On Wed Jul 2, 2025 at 5:15 PM CEST, Jan Beulich wrote: >>> On 02.07.2025 17:09, Alejandro Vallejo wrote: On Wed Jul 2, 2025 at 3:15 PM CEST, Jan Beulich wrote: > On 01.07.2025 12:56, A

Re: [PATCH v5 03/10] x86: Replace arch-specific boot_domain with the common one

2025-07-02 Thread Jan Beulich
On 02.07.2025 17:34, Alejandro Vallejo wrote: > On Wed Jul 2, 2025 at 5:15 PM CEST, Jan Beulich wrote: >> On 02.07.2025 17:09, Alejandro Vallejo wrote: >>> On Wed Jul 2, 2025 at 3:15 PM CEST, Jan Beulich wrote: On 01.07.2025 12:56, Alejandro Vallejo wrote: > --- a/xen/arch/x86/include/asm/

Re: [PATCH v5 03/10] x86: Replace arch-specific boot_domain with the common one

2025-07-02 Thread Alejandro Vallejo
On Wed Jul 2, 2025 at 5:15 PM CEST, Jan Beulich wrote: > On 02.07.2025 17:09, Alejandro Vallejo wrote: >> On Wed Jul 2, 2025 at 3:15 PM CEST, Jan Beulich wrote: >>> On 01.07.2025 12:56, Alejandro Vallejo wrote: --- a/xen/arch/x86/include/asm/bootfdt.h +++ b/xen/arch/x86/include/asm/bootfd

Re: [PATCH v5 03/10] x86: Replace arch-specific boot_domain with the common one

2025-07-02 Thread Jan Beulich
On 02.07.2025 17:09, Alejandro Vallejo wrote: > On Wed Jul 2, 2025 at 3:15 PM CEST, Jan Beulich wrote: >> On 01.07.2025 12:56, Alejandro Vallejo wrote: >>> --- a/xen/arch/x86/include/asm/bootfdt.h >>> +++ b/xen/arch/x86/include/asm/bootfdt.h >>> @@ -3,6 +3,12 @@ >>> #define X86_BOOTFDT_H >>> >>>

Re: [PATCH v5 03/10] x86: Replace arch-specific boot_domain with the common one

2025-07-02 Thread Alejandro Vallejo
On Wed Jul 2, 2025 at 3:15 PM CEST, Jan Beulich wrote: > On 01.07.2025 12:56, Alejandro Vallejo wrote: >> --- a/xen/arch/x86/include/asm/bootfdt.h >> +++ b/xen/arch/x86/include/asm/bootfdt.h >> @@ -3,6 +3,12 @@ >> #define X86_BOOTFDT_H >> >> #include >> +#include >> + >> +struct arch_boot_dom

Re: [PATCH v5 03/10] x86: Replace arch-specific boot_domain with the common one

2025-07-02 Thread Alejandro Vallejo
On Wed Jul 2, 2025 at 3:15 PM CEST, Jan Beulich wrote: > On 01.07.2025 12:56, Alejandro Vallejo wrote: >> --- a/xen/arch/x86/include/asm/bootfdt.h >> +++ b/xen/arch/x86/include/asm/bootfdt.h >> @@ -3,6 +3,12 @@ >> #define X86_BOOTFDT_H >> >> #include >> +#include >> + >> +struct arch_boot_dom

Re: [PATCH v5 03/10] x86: Replace arch-specific boot_domain with the common one

2025-07-02 Thread Jan Beulich
On 01.07.2025 12:56, Alejandro Vallejo wrote: > --- a/xen/arch/x86/include/asm/bootfdt.h > +++ b/xen/arch/x86/include/asm/bootfdt.h > @@ -3,6 +3,12 @@ > #define X86_BOOTFDT_H > > #include > +#include > + > +struct arch_boot_domain > +{ > +domid_t domid; > +}; > > struct arch_boot_modul

[PATCH v5 03/10] x86: Replace arch-specific boot_domain with the common one

2025-07-01 Thread Alejandro Vallejo
Add the single arch-specific field in an "arch" subfield defined in asm/bootfdt.h. No functional change intended. Signed-off-by: Alejandro Vallejo Reviewed-by: Stefano Stabellini --- xen/arch/x86/hvm/dom0_build.c | 2 +- xen/arch/x86/include/asm/boot-domain.h | 33 ---