@@ -30,6 +30,8 @@ struct boot_module {
#define BOOTMOD_FLAG_X86_RELOCATED (1U << 0)
#define BOOTMOD_FLAG_X86_CONSUMED (1U << 1)
+ const char *cmdline;
+
paddr_t start;
size_t size;
};
@@ -314,6 +314,8 @@ static void __init multiboot_to_bootinfo(multiboot_info_t *mbi, module_t *mods)
{
boot_mods[i].early_mod = &mods[i];
+ boot_mods[i].cmdline = (char *)(paddr_t)mods[i].string;
+
boot_mods[i].start = (paddr_t)mods[i].mod_start;
boot_mods[i].size = mods[i].mod_end - mods[i].mod_start;
}
@@ -1000,10 +1002,11 @@ static struct domain *__init create_dom0(const struct boot_info *bi)
panic("Error creating d%uv0\n", domid);
/* Grab the DOM0 command line. */
- if ( image->early_mod->string || bi->kextra )
+ if ( image->cmdline || bi->kextra )
{
- if ( image->early_mod->string )
- safe_strcpy(cmdline, cmdline_cook(__va(image->early_mod->string),
+ if ( image->cmdline )
+ safe_strcpy(cmdline,
+ cmdline_cook(__va((unsigned long)image->cmdline),
bi->boot_loader_name));
if ( bi->kextra )
Add a char pointer field, cmdline, to struct boot_module to hold the address pointed to by the string field of struct mod. This removes the need to use the early_mod field to get to the dom0 kernel command line. Signed-off-by: Daniel P. Smith <dpsmith@apertussolutions.com> --- xen/arch/x86/include/asm/bootinfo.h | 2 ++ xen/arch/x86/setup.c | 9 ++++++--- 2 files changed, 8 insertions(+), 3 deletions(-)