Searched refs:secname (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/arch/arm/kernel/ |
D | module.c | 306 const char *secname = secstrs + s->sh_name; in module_finalize() local 311 if (strcmp(".ARM.exidx.init.text", secname) == 0) in module_finalize() 313 else if (strcmp(".ARM.exidx", secname) == 0) in module_finalize() 315 else if (strcmp(".ARM.exidx.exit.text", secname) == 0) in module_finalize() 317 else if (strcmp(".ARM.exidx.text.unlikely", secname) == 0) in module_finalize() 319 else if (strcmp(".ARM.exidx.text.hot", secname) == 0) in module_finalize() 321 else if (strcmp(".init.text", secname) == 0) in module_finalize() 323 else if (strcmp(".text", secname) == 0) in module_finalize() 325 else if (strcmp(".exit.text", secname) == 0) in module_finalize() 327 else if (strcmp(".text.unlikely", secname) == 0) in module_finalize() [all …]
|
/linux-4.1.27/scripts/mod/ |
D | modpost.c | 269 const char *secname = sec_name(elf, sec); in export_from_secname() local 271 if (strstarts(secname, "___ksymtab+")) in export_from_secname() 273 else if (strstarts(secname, "___ksymtab_unused+")) in export_from_secname() 275 else if (strstarts(secname, "___ksymtab_gpl+")) in export_from_secname() 277 else if (strstarts(secname, "___ksymtab_unused_gpl+")) in export_from_secname() 279 else if (strstarts(secname, "___ksymtab_gpl_future+")) in export_from_secname() 495 const char *secname; in parse_elf() local 505 secname = secstrings + sechdrs[i].sh_name; in parse_elf() 506 if (strcmp(secname, ".modinfo") == 0) { in parse_elf() 511 } else if (strcmp(secname, "__ksymtab") == 0) in parse_elf() [all …]
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | vdso.c | 295 static void * __init find_section32(Elf32_Ehdr *ehdr, const char *secname, in find_section32() argument 308 if (strcmp(secnames+sechdrs[i].sh_name, secname) == 0) { in find_section32() 386 static void * __init find_section64(Elf64_Ehdr *ehdr, const char *secname, in find_section64() argument 399 if (strcmp(secnames+sechdrs[i].sh_name, secname) == 0) { in find_section64()
|