Commit 2f0f2a334bc38b61a9afca951185cd3844ee709d

Authored by Denys Vlasenko
Committed by Rusty Russell
1 parent f7f5b67557

module: turn longs into ints for module sizes

This shrinks module.o and each *.ko file.

And finally, structure members which hold length of module
code (four such members there) and count of symbols
are converted from longs to ints.

We cannot possibly have a module where 32 bits won't
be enough to hold such counts.

For one, module loading checks module size for sanity
before loading, so such insanely big module will fail
that test first.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

Showing 2 changed files with 5 additions and 5 deletions Side-by-side Diff

include/linux/module.h
... ... @@ -288,10 +288,10 @@
288 288 void *module_core;
289 289  
290 290 /* Here are the sizes of the init and core sections */
291   - unsigned long init_size, core_size;
  291 + unsigned int init_size, core_size;
292 292  
293 293 /* The size of the executable code in each section. */
294   - unsigned long init_text_size, core_text_size;
  294 + unsigned int init_text_size, core_text_size;
295 295  
296 296 /* The handle returned from unwind_add_table. */
297 297 void *unwind_info;
... ... @@ -311,7 +311,7 @@
311 311 #ifdef CONFIG_KALLSYMS
312 312 /* We keep the symbol and string tables for kallsyms. */
313 313 Elf_Sym *symtab;
314   - unsigned long num_symtab;
  314 + unsigned int num_symtab;
315 315 char *strtab;
316 316  
317 317 /* Section attributes */
... ... @@ -1567,7 +1567,7 @@
1567 1567 }
1568 1568  
1569 1569 /* Update size with this section: return offset. */
1570   -static long get_offset(unsigned long *size, Elf_Shdr *sechdr)
  1570 +static long get_offset(unsigned int *size, Elf_Shdr *sechdr)
1571 1571 {
1572 1572 long ret;
1573 1573  
... ... @@ -2562,7 +2562,7 @@
2562 2562 struct module *mod = list_entry(p, struct module, list);
2563 2563 char buf[8];
2564 2564  
2565   - seq_printf(m, "%s %lu",
  2565 + seq_printf(m, "%s %u",
2566 2566 mod->name, mod->init_size + mod->core_size);
2567 2567 print_unload_info(m, mod);
2568 2568