Home
last modified time | relevance | path

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

/Linux-v6.6/scripts/
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-v6.6/arch/s390/kernel/
Dmodule.c532 char *secstrings, *secname; in module_finalize() local
552 secname = secstrings + s->sh_name; in module_finalize()
554 if (!strcmp(".altinstructions", secname)) in module_finalize()
559 (str_has_prefix(secname, ".s390_indirect"))) in module_finalize()
563 (str_has_prefix(secname, ".s390_return"))) in module_finalize()
567 if (!strcmp(FTRACE_CALLSITE_SECTION, secname)) { in module_finalize()
/Linux-v6.6/arch/arm/kernel/
Dmodule.c466 const char *secname = secstrs + s->sh_name; in module_finalize() local
474 if (!strcmp(".ARM.exidx", secname)) in module_finalize()
477 txtname = secname + strlen(".ARM.exidx"); in module_finalize()
490 if (strcmp(".ARM.exidx.init.text", secname) == 0) in module_finalize()
/Linux-v6.6/scripts/mod/
Dmodpost.c517 const char *secname; in parse_elf() local
526 secname = secstrings + sechdrs[i].sh_name; in parse_elf()
527 if (strcmp(secname, ".modinfo") == 0) { in parse_elf()
532 } else if (!strcmp(secname, ".export_symbol")) { in parse_elf()
1190 Elf_Addr faddr, const char *secname, in check_export_symbol() argument
1251 if (match(secname, PATTERNS(INIT_SECTIONS))) in check_export_symbol()
1254 else if (match(secname, PATTERNS(EXIT_SECTIONS))) in check_export_symbol()
/Linux-v6.6/arch/parisc/kernel/
Dmodule.c926 char *secname = secstrings + s->sh_name; in module_finalize() local
928 if (!strcmp(".altinstructions", secname)) in module_finalize()
937 if (symindex != -1 && !strcmp(secname, FTRACE_CALLSITE_SECTION)) { in module_finalize()
/Linux-v6.6/arch/mips/boot/tools/
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()