Home
last modified time | relevance | path

Searched refs:secname (Results 1 – 6 of 6) sorted by relevance

/linux/scripts/
H A Dgenerate_initcall_order.pl48 my $secname = $initcalls->{$counter}->{'module'} . '__' .
53 print "$index $level $secname\n";
72 my ($index, $level, $secname) = $data =~
77 !defined($secname)) {
89 'secname' => $secname
260 foreach my $secname (@{$sections->{$level}}) {
261 print "\t\t*(${section}..${secname}) ;\n";
/linux/arch/s390/kernel/
H A Dmodule.c496 char *secstrings, *secname; in module_finalize() local
516 secname = secstrings + s->sh_name; in module_finalize()
518 if (!strcmp(".altinstructions", secname)) in module_finalize()
523 (str_has_prefix(secname, ".s390_indirect"))) in module_finalize()
527 (str_has_prefix(secname, ".s390_return"))) in module_finalize()
531 if (!strcmp(FTRACE_CALLSITE_SECTION, secname)) { in module_finalize()
/linux/arch/arm/kernel/
H A Dmodule.c427 const char *secname = secstrs + s->sh_name; in module_finalize() local
435 if (!strcmp(".ARM.exidx", secname)) in module_finalize()
438 txtname = secname + strlen(".ARM.exidx"); in module_finalize()
451 if (strcmp(".ARM.exidx.init.text", secname) == 0) in module_finalize()
/linux/scripts/mod/
H A Dmodpost.c494 const char *secname; in parse_elf() local
502 secname = secstrings + sechdrs[i].sh_name; in parse_elf()
503 if (strcmp(secname, ".modinfo") == 0) { in parse_elf()
508 } else if (!strcmp(secname, ".export_symbol")) { in parse_elf()
510 } else if (!strcmp(secname, ".no_trim_symbol")) { in parse_elf()
1053 Elf_Addr faddr, const char *secname, in check_export_symbol() argument
1114 if (match(secname, PATTERNS(ALL_INIT_SECTIONS))) in check_export_symbol()
1117 else if (match(secname, PATTERNS(ALL_EXIT_SECTIONS))) in check_export_symbol()
1421 const char *secname = sec_name(elf, secndx); in check_sec_ref() local
1425 if (match(secname, section_white_lis in check_sec_ref()
[all...]
/linux/arch/parisc/kernel/
H A Dmodule.c914 char *secname = secstrings + s->sh_name; in module_finalize() local
916 if (!strcmp(".altinstructions", secname)) in module_finalize()
925 if (symindex != -1 && !strcmp(secname, FTRACE_CALLSITE_SECTION)) { in module_finalize()
/linux/arch/mips/boot/tools/
H A Drelocs.c108 static struct section *sec_lookup(const char *secname) in sec_lookup() argument
113 if (strcmp(secname, sec_name(i)) == 0) in sec_lookup()