Searched refs:secname (Results 1 – 3 of 3) sorted by relevance
/linux-4.4.14/arch/arm/kernel/ |
D | module.c | 336 const char *secname = secstrs + s->sh_name; in module_finalize() local 341 if (strcmp(".ARM.exidx.init.text", secname) == 0) in module_finalize() 343 else if (strcmp(".ARM.exidx", secname) == 0) in module_finalize() 345 else if (strcmp(".ARM.exidx.exit.text", secname) == 0) in module_finalize() 347 else if (strcmp(".ARM.exidx.text.unlikely", secname) == 0) in module_finalize() 349 else if (strcmp(".ARM.exidx.text.hot", secname) == 0) in module_finalize() 351 else if (strcmp(".init.text", secname) == 0) in module_finalize() 353 else if (strcmp(".text", secname) == 0) in module_finalize() 355 else if (strcmp(".exit.text", secname) == 0) in module_finalize() 357 else if (strcmp(".text.unlikely", secname) == 0) in module_finalize() [all …]
|
/linux-4.4.14/scripts/mod/ |
D | modpost.c | 270 const char *secname = sec_name(elf, sec); in export_from_secname() local 272 if (strstarts(secname, "___ksymtab+")) in export_from_secname() 274 else if (strstarts(secname, "___ksymtab_unused+")) in export_from_secname() 276 else if (strstarts(secname, "___ksymtab_gpl+")) in export_from_secname() 278 else if (strstarts(secname, "___ksymtab_unused_gpl+")) in export_from_secname() 280 else if (strstarts(secname, "___ksymtab_gpl_future+")) in export_from_secname() 496 const char *secname; in parse_elf() local 506 secname = secstrings + sechdrs[i].sh_name; in parse_elf() 507 if (strcmp(secname, ".modinfo") == 0) { in parse_elf() 512 } else if (strcmp(secname, "__ksymtab") == 0) in parse_elf() [all …]
|
/linux-4.4.14/arch/powerpc/kernel/ |
D | vdso.c | 255 static void * __init find_section32(Elf32_Ehdr *ehdr, const char *secname, in find_section32() argument 268 if (strcmp(secnames+sechdrs[i].sh_name, secname) == 0) { in find_section32() 360 static void * __init find_section64(Elf64_Ehdr *ehdr, const char *secname, in find_section64() argument 373 if (strcmp(secnames+sechdrs[i].sh_name, secname) == 0) { in find_section64()
|