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
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 )
> +{
>
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
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