@@ -8,7 +8,6 @@
#ifndef __XEN_X86_BOOTINFO_H__
#define __XEN_X86_BOOTINFO_H__
-#include <xen/multiboot.h>
#include <xen/types.h>
/* Max number of boot modules a bootloader can provide in addition to Xen */
@@ -25,8 +24,6 @@ enum bootmod_type {
};
struct boot_module {
- /* Transitionary only */
- module_t *mod;
/*
* A boot module may contain a compressed kernel that Xen will need space
* reserved, into which it will be decompressed.
@@ -308,8 +308,6 @@ static struct boot_info __init *multiboot_fill_boot_info(unsigned long mbi_p)
*/
for ( i = 0; i <= bi->nr_modules; i++ )
{
- bi->mods[i].mod = &mods[i];
-
bi->mods[i].cmdline = (char *)(paddr_t)mods[i].string;
bi->mods[i].start = (paddr_t)mods[i].mod_start;
@@ -319,7 +317,6 @@ static struct boot_info __init *multiboot_fill_boot_info(unsigned long mbi_p)
/* map the last mb module for xen entry */
bi->mods[bi->nr_modules].type = BOOTMOD_XEN;
bi->mods[bi->nr_modules].flags |= BOOTMOD_FLAG_X86_CONSUMED;
- bi->mods[bi->nr_modules].mod = &mods[bi->nr_modules];
return bi;
}
With all references to mod field removed, remove the mod field from struct boot_module. Signed-off-by: Daniel P. Smith <dpsmith@apertussolutions.com> --- xen/arch/x86/include/asm/bootinfo.h | 3 --- xen/arch/x86/setup.c | 3 --- 2 files changed, 6 deletions(-)