Re: [PATCH v5 04/44] x86/boot: move mmap info to boot info

2024-10-09 Thread Daniel P. Smith
On 10/9/24 11:13, Jan Beulich wrote: On 06.10.2024 23:49, Daniel P. Smith wrote: --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -296,6 +296,12 @@ static struct boot_info __init *multiboot_fill_boot_info(unsigned long mbi_p) else bi->cmdline = ""; +if ( mbi->flag

Re: [PATCH v5 04/44] x86/boot: move mmap info to boot info

2024-10-09 Thread Jan Beulich
On 06.10.2024 23:49, Daniel P. Smith wrote: > --- a/xen/arch/x86/setup.c > +++ b/xen/arch/x86/setup.c > @@ -296,6 +296,12 @@ static struct boot_info __init > *multiboot_fill_boot_info(unsigned long mbi_p) > else > bi->cmdline = ""; > > +if ( mbi->flags & MBI_MEMMAP ) > +{ >

Re: [PATCH v5 04/44] x86/boot: move mmap info to boot info

2024-10-07 Thread Jason Andryuk
On 2024-10-06 17:49, Daniel P. Smith wrote: Transition the memory map info to be held in struct boot_info. No functional change intended. Signed-off-by: Daniel P. Smith Reviewed-by: Jason Andryuk

[PATCH v5 04/44] x86/boot: move mmap info to boot info

2024-10-06 Thread Daniel P. Smith
Transition the memory map info to be held in struct boot_info. No functional change intended. Signed-off-by: Daniel P. Smith --- xen/arch/x86/include/asm/bootinfo.h | 5 + xen/arch/x86/setup.c| 12 +--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a