Home
last modified time | relevance | path

Searched refs:sections (Results 1 – 25 of 194) sorted by relevance

12345678

/linux/drivers/net/wireless/ath/ath10k/
H A Dcoredump.c810 .sections = NULL,
825 .sections = NULL,
840 .sections = NULL,
853 .sections = NULL,
863 .sections = NULL,
873 .sections = qca6174_hw21_register_sections,
886 .sections = NULL,
896 .sections = NULL,
906 .sections = NULL,
916 .sections = NULL,
[all …]
/linux/scripts/kconfig/tests/err_transitional/
H A Dexpected_stderr2 Kconfig:7: error: transitional symbols can only have help sections
3 Kconfig:14: error: transitional symbols can only have help sections
4 Kconfig:21: error: transitional symbols can only have help sections
5 Kconfig:28: error: transitional symbols can only have help sections
6 Kconfig:32: error: transitional symbols can only have help sections
7 Kconfig:42: error: transitional symbols can only have help sections
/linux/scripts/
H A Dgenerate_initcall_order.pl227 my $sections = {}; # level -> [ secname, ...]
235 if (!exists($sections->{$level})) {
236 $sections->{$level} = [];
239 push(@{$sections->{$level}}, $result->{'secname'});
243 die "$0: ERROR: no initcalls?" if (!keys(%{$sections}));
249 foreach my $level (sort(keys(%{$sections}))) {
260 foreach my $secname (@{$sections->{$level}}) {
H A DMakefile.propeller5 …S_PROPELLER_CLANG := -fbasic-block-sections=list=$(CLANG_PROPELLER_PROFILE_PREFIX)_cc_profile.txt …
14 CFLAGS_PROPELLER_CLANG := -fbasic-block-sections=labels
29 KBUILD_LDFLAGS += --lto-basic-block-sections=$(CLANG_PROPELLER_PROFILE_PREFIX)_cc_profile.txt
34 KBUILD_LDFLAGS += --lto-basic-block-sections=labels
H A Dextract-sys-certs.pl30 my @sections = ();
44 push @sections, { name => $name,
107 foreach my $sec (@sections) {
H A DMakefile.debug40 KBUILD_LDFLAGS += --compress-debug-sections=zlib
45 KBUILD_LDFLAGS += --compress-debug-sections=zstd
/linux/sound/firewire/dice/
H A Ddice-proc.c71 u32 sections[ARRAY_SIZE(section_names) * 2]; in dice_proc_read() local
117 if (dice_proc_read_mem(dice, sections, 0, ARRAY_SIZE(sections)) < 0) in dice_proc_read()
123 sections[i * 2], sections[i * 2 + 1]); in dice_proc_read()
125 quadlets = min_t(u32, sections[1], sizeof(buf.global) / 4); in dice_proc_read()
126 if (dice_proc_read_mem(dice, &buf.global, sections[0], quadlets) < 0) in dice_proc_read()
170 if (dice_proc_read_mem(dice, &tx_rx_header, sections[2], 2) < 0) in dice_proc_read()
174 if (dice_proc_read_mem(dice, &buf.tx, sections[2] + 2 + in dice_proc_read()
196 if (dice_proc_read_mem(dice, &tx_rx_header, sections[4], 2) < 0) in dice_proc_read()
200 if (dice_proc_read_mem(dice, &buf.rx, sections[4] + 2 + in dice_proc_read()
222 quadlets = min_t(u32, sections[7], sizeof(buf.ext_sync) / 4); in dice_proc_read()
[all …]
/linux/tools/lib/python/kdoc/
H A Dkdoc_item.py23 self.sections = {}
39 'sections',
84 def set_sections(self, sections, start_lines):
86 Set sections and start lines.
88 self.sections = sections
35 set_sections(self, sections, start_lines) global() argument
H A Dkdoc_parser.py144 self.sections = {}
214 if name in self.sections and self.sections[name] != "":
220 self.sections[name] += '\n' + contents
222 self.sections[name] = contents
314 # Drop empty sections
315 # TODO: improve empty sections logic to emit warnings
316 sections = self.entry.sections
318 if section in sections an
[all...]
H A Dkdoc_output.py59 OUTPUT_ALL = 0 #: Output all symbols and doc sections.
376 This could use some work; it's used to output the DOC: sections, and
380 for section, text in args.sections.items():
381 # Skip sections that are in the nosymbol_table
756 # TODO: does it make sense to add other sections? Maybe
1009 for section, text in args.sections.items():
1056 for section, text in args.sections.items():
1088 for section, text in args.sections.items():
1108 for section, text in args.sections.items():
1122 for section, text in args.sections
[all...]
/linux/tools/testing/selftests/sgx/
H A Dload.c141 Elf64_Shdr *sections; in encl_get_entry() local
147 sections = encl->bin + ehdr->e_shoff; in encl_get_entry()
150 if (sections[i].sh_type == SHT_SYMTAB) { in encl_get_entry()
151 symtab = (Elf64_Sym *)((char *)encl->bin + sections[i].sh_offset); in encl_get_entry()
152 num_sym = sections[i].sh_size / sections[i].sh_entsize; in encl_get_entry()
158 if (sections[i].sh_type == SHT_STRTAB) { in encl_get_entry()
159 sym_names = (char *)encl->bin + sections[i].sh_offset; in encl_get_entry()
/linux/Documentation/livepatch/
H A Dmodule-elf-format.rst32 relocation sections and symbols, which are described in this document. The
33 ELF constants used to mark livepatch symbols and relocation sections were
45 embedding special "dynrela" (dynamic rela) sections in the resulting patch
46 module ELF output. Using these dynrela sections, livepatch could resolve
51 relocation sections in place of dynrela sections, and the symbols that the
80 3. Livepatch relocation sections
83 A livepatch module manages its own ELF relocation sections to apply
90 multiple livepatch relocation sections associated with it (e.g. patches to
95 sections, as in the case of the sample livepatch module (see
110 Livepatch relocation sections must be marked with the SHF_RELA_LIVEPATCH
[all …]
/linux/tools/perf/util/
H A Dconfig.c628 static struct perf_config_section *find_section(struct list_head *sections, in find_section()
633 list_for_each_entry(section, sections, node) in find_section()
652 static struct perf_config_section *add_section(struct list_head *sections, in add_section()
668 list_add_tail(&section->node, sections); in add_section()
712 struct list_head *sections; in collect_config()
717 sections = &set->sections; in collect_config()
729 section = find_section(sections, section_name); in collect_config()
731 section = add_section(sections, section_name); in collect_config()
795 INIT_LIST_HEAD(&set->sections); in perf_config_set__new()
626 find_section(struct list_head * sections,const char * section_name) find_section() argument
650 add_section(struct list_head * sections,const char * section_name) add_section() argument
710 struct list_head *sections; collect_config() local
[all...]
/linux/arch/loongarch/boot/
H A DMakefile7 drop-sections := .comment .note .options .note.gnu.build-id
8 strip-flags := $(addprefix --remove-section=,$(drop-sections)) -S
/linux/drivers/firmware/efi/libstub/
H A DMakefile62 KBUILD_CFLAGS_KERNEL := $(filter-out -fdata-sections, $(KBUILD_CFLAGS_KERNEL))
139 STUBCOPY_FLAGS-$(CONFIG_ARM64) += --prefix-alloc-sections=.init \
146 STUBCOPY_FLAGS-$(CONFIG_RISCV) += --prefix-alloc-sections=.init \
152 STUBCOPY_FLAGS-$(CONFIG_LOONGARCH) += --prefix-alloc-sections=.init \
/linux/Documentation/arch/powerpc/
H A Dvmemmap_dedup.rst22 Here's how things look like on device-dax after the sections are populated::
50 Here's how things look like on device-dax after the sections are populated::
79 Here's how things look like on device-dax after the sections are populated::
/linux/tools/memory-model/litmus-tests/
H A DMP+unlocklockonceonce+fencermbonceonce.litmus6 * If two locked critical sections execute on the same CPU, stores in the
8 * the critical sections are protected by different locks.
H A DLB+unlocklockonceonce+poacquireonce.litmus6 * If two locked critical sections execute on the same CPU, all accesses
8 * critical sections are protected by different locks. Note: Even when a
/linux/arch/powerpc/platforms/pseries/
H A Drtas-fadump.c591 const __be32 *sections; in rtas_fadump_dt_scan() local
627 sections = of_get_flat_dt_prop(node, "ibm,configure-kernel-dump-sizes", in rtas_fadump_dt_scan()
630 if (!sections) in rtas_fadump_dt_scan()
635 for (i = 0; i < num_sections; i++, sections += 3) { in rtas_fadump_dt_scan()
636 u32 type = (u32)of_read_number(sections, 1); in rtas_fadump_dt_scan()
641 of_read_ulong(&sections[1], 2); in rtas_fadump_dt_scan()
645 of_read_ulong(&sections[1], 2); in rtas_fadump_dt_scan()
/linux/tools/testing/selftests/splice/
H A Dshort_splice_read.sh127 if ! [ -d /sys/module/test_module/sections ] ; then
131 expect_success "kernfs binattr splice" test_splice /sys/module/test_module/sections/.init.text
/linux/Documentation/litmus-tests/rcu/
H A DRCU+sync+read.litmus7 * sees all stores done in prior RCU read-side critical sections. Such
8 * read-side critical sections would have ended before the grace period ended.
/linux/Documentation/ABI/testing/
H A Ddevlink-resource-mlxsw8 is divided into two sections, the first is hash-based table
10 between the linear and hash-based sections is static and
/linux/Documentation/RCU/
H A DwhatisRCU.rst107 critical sections.
172 can preempt RCU read-side critical sections. Any RCU-protected
181 sections, even for spinlocks that do not disable preemption,
183 Sleeplocks do *not* enter RCU read-side critical sections.
195 Note that RCU read-side critical sections may be nested and/or
204 all pre-existing RCU read-side critical sections on all CPUs
207 sections to complete. For example, consider the following
220 read-side critical sections to complete, not necessarily for
239 critical sections have completed. This callback variant is
503 read-side critical sections.
[all …]
H A Drcu.rst36 read-side critical sections. So, if we remove an item from a
44 RCU read-side critical sections. SRCU also uses CPU-local
46 critical sections. These variants of RCU detect grace periods
/linux/Documentation/sound/soc/
H A Dindex.rst5 The documentation is spilt into the following sections:-

12345678