|
@@ -288,10 +288,10 @@ struct module
|
|
|
void *module_core;
|
|
|
|
|
|
/* Here are the sizes of the init and core sections */
|
|
|
- unsigned long init_size, core_size;
|
|
|
+ unsigned int init_size, core_size;
|
|
|
|
|
|
/* The size of the executable code in each section. */
|
|
|
- unsigned long init_text_size, core_text_size;
|
|
|
+ unsigned int init_text_size, core_text_size;
|
|
|
|
|
|
/* The handle returned from unwind_add_table. */
|
|
|
void *unwind_info;
|
|
@@ -311,7 +311,7 @@ struct module
|
|
|
#ifdef CONFIG_KALLSYMS
|
|
|
/* We keep the symbol and string tables for kallsyms. */
|
|
|
Elf_Sym *symtab;
|
|
|
- unsigned long num_symtab;
|
|
|
+ unsigned int num_symtab;
|
|
|
char *strtab;
|
|
|
|
|
|
/* Section attributes */
|