Home
last modified time | relevance | path

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

123456789

/Linux-v4.19/drivers/net/wireless/ath/ath10k/
Dcoredump.c547 .sections = NULL,
562 .sections = NULL,
577 .sections = NULL,
590 .sections = NULL,
600 .sections = NULL,
610 .sections = qca6174_hw21_register_sections,
623 .sections = NULL,
633 .sections = NULL,
643 .sections = qca6174_hw30_register_sections,
655 .sections = NULL,
[all …]
/Linux-v4.19/sound/firewire/dice/
Ddice-proc.c72 u32 sections[ARRAY_SIZE(section_names) * 2]; in dice_proc_read() local
118 if (dice_proc_read_mem(dice, sections, 0, ARRAY_SIZE(sections)) < 0) in dice_proc_read()
124 sections[i * 2], sections[i * 2 + 1]); in dice_proc_read()
126 quadlets = min_t(u32, sections[1], sizeof(buf.global) / 4); in dice_proc_read()
127 if (dice_proc_read_mem(dice, &buf.global, sections[0], quadlets) < 0) in dice_proc_read()
171 if (dice_proc_read_mem(dice, &tx_rx_header, sections[2], 2) < 0) in dice_proc_read()
175 if (dice_proc_read_mem(dice, &buf.tx, sections[2] + 2 + in dice_proc_read()
197 if (dice_proc_read_mem(dice, &tx_rx_header, sections[4], 2) < 0) in dice_proc_read()
201 if (dice_proc_read_mem(dice, &buf.rx, sections[4] + 2 + in dice_proc_read()
223 quadlets = min_t(u32, sections[7], sizeof(buf.ext_sync) / 4); in dice_proc_read()
[all …]
/Linux-v4.19/Documentation/devicetree/bindings/sram/
Dsunxi-sram.txt29 Each SRAM will have SRAM sections that are going to be handled by the
30 SRAM controller as subnodes. These sections are represented following
33 The valid sections compatible for A10 are:
38 The valid sections compatible for A13 are:
43 The valid sections compatible for A20 are:
48 The valid sections compatible for A23/A33 are:
51 The valid sections compatible for H3 are:
54 The valid sections compatible for A64 are:
57 Devices using SRAM sections
/Linux-v4.19/Documentation/livepatch/
Dmodule-elf-format.txt12 2. Livepatch relocation sections
13 2.1 What are livepatch relocation sections?
18 2.2.4 Example `readelf --sections` output
28 4. Architecture-specific sections
51 relocation sections and symbols, which are described in this document. The
52 Elf constants used to mark livepatch symbols and relocation sections were
64 embedding special "dynrela" (dynamic rela) sections in the resulting patch
65 module Elf output. Using these dynrela sections, livepatch could resolve
70 relocation sections in place of dynrela sections, and the symbols that the
100 2. Livepatch relocation sections
[all …]
/Linux-v4.19/arch/ia64/hp/sim/boot/
Dbootloader.lds7 /* Read-only sections, merged into text segment: */
20 /* We want the small data sections together, so single-instruction offsets
33 /* Stabs debugging sections. */
41 /* DWARF debug sections.
42 Symbols in the DWARF debugging sections are relative to the beginning
/Linux-v4.19/tools/perf/util/
Dconfig.c502 static struct perf_config_section *find_section(struct list_head *sections, in find_section() argument
507 list_for_each_entry(section, sections, node) in find_section()
526 static struct perf_config_section *add_section(struct list_head *sections, in add_section() argument
542 list_add_tail(&section->node, sections); in add_section()
586 struct list_head *sections; in collect_config() local
591 sections = &set->sections; in collect_config()
603 section = find_section(sections, section_name); in collect_config()
605 section = add_section(sections, section_name); in collect_config()
703 INIT_LIST_HEAD(&set->sections); in perf_config_set__new()
786 list_for_each_entry_safe(section, tmp, &set->sections, node) { in perf_config_set__purge()
Dconfig.h23 struct list_head sections; member
67 perf_config_sections__for_each_entry(&set->sections, section) \
/Linux-v4.19/drivers/net/wireless/intel/iwlwifi/mvm/
Dnvm.c282 struct iwl_nvm_section *sections = mvm->nvm_sections; in iwl_parse_nvm_sections() local
324 hw = (const __be16 *)sections[mvm->cfg->nvm_hw_section_num].data; in iwl_parse_nvm_sections()
325 sw = (const __le16 *)sections[NVM_SECTION_TYPE_SW].data; in iwl_parse_nvm_sections()
326 calib = (const __le16 *)sections[NVM_SECTION_TYPE_CALIBRATION].data; in iwl_parse_nvm_sections()
328 (const __le16 *)sections[NVM_SECTION_TYPE_MAC_OVERRIDE].data; in iwl_parse_nvm_sections()
329 phy_sku = (const __le16 *)sections[NVM_SECTION_TYPE_PHY_SKU].data; in iwl_parse_nvm_sections()
332 (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY_SDP].data : in iwl_parse_nvm_sections()
333 (const __le16 *)sections[NVM_SECTION_TYPE_REGULATORY].data; in iwl_parse_nvm_sections()
349 struct iwl_nvm_section *sections = mvm->nvm_sections; in iwl_mvm_load_nvm_to_nic() local
356 ret = iwl_nvm_write_section(mvm, i, sections[i].data, in iwl_mvm_load_nvm_to_nic()
[all …]
/Linux-v4.19/tools/objtool/
Delf.c38 list_for_each_entry(sec, &elf->sections, list) in find_section_by_name()
50 list_for_each_entry(sec, &elf->sections, list) in find_section_by_index()
62 list_for_each_entry(sec, &elf->sections, list) in find_symbol_by_index()
87 list_for_each_entry(sec, &elf->sections, list) in find_symbol_by_name()
171 list_add_tail(&sec->list, &elf->sections); in read_sections()
299 list_for_each_entry(sec, &elf->sections, list) { in read_symbols()
351 list_for_each_entry(sec, &elf->sections, list) { in read_relas()
411 INIT_LIST_HEAD(&elf->sections); in elf_open()
474 list_add_tail(&sec->list, &elf->sections); in elf_create_section()
624 list_for_each_entry(sec, &elf->sections, list) { in elf_write()
[all …]
Delf.h82 struct list_head sections; member
104 list_for_each_entry(sec, &file->elf->sections, list)
/Linux-v4.19/scripts/
Dkernel-doc377 my %sections;
485 if (defined($sections{$name}) && ($sections{$name} ne "")) {
491 $sections{$name} .= $contents;
493 $sections{$name} = $contents;
521 'sections' => \%sections,
1190 'sections' => \%sections,
1281 'sections' => \%sections,
1318 'sections' => \%sections,
1337 'sections' => \%sections,
1550 if (!defined($sections{$section_return}) ||
[all …]
Dextract-sys-certs.pl30 my @sections = ();
44 push @sections, { name => $name,
107 foreach my $sec (@sections) {
/Linux-v4.19/arch/ia64/
Dmodule.lds3 /* Group unwind sections into a single section: */
7 * Create place-holder sections to hold the PLTs, GOT, and
/Linux-v4.19/init/
DMakefile6 ccflags-y := -fno-function-sections -fno-data-sections
/Linux-v4.19/Documentation/ABI/testing/
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-v4.19/Documentation/RCU/
DwhatisRCU.txt83 critical sections.
146 read-side critical sections. Any RCU-protected data structure
158 read-side critical sections may be nested and/or overlapping.
166 read-side critical sections on all CPUs have completed.
168 any subsequent RCU read-side critical sections to complete.
181 read-side critical sections to complete, not necessarily for
199 after all ongoing RCU read-side critical sections have completed.
424 read-side critical sections.
441 RCU read-side critical sections that might be referencing that
530 read-side critical sections that might be referencing that
[all …]
Drcu.txt34 read-side critical sections. So, if we remove an item from a
42 RCU read-side critical sections. SRCU also uses CPU-local
44 critical sections. These variants of RCU detect grace periods
/Linux-v4.19/Documentation/sound/soc/
Dindex.rst5 The documentation is spilt into the following sections:-
/Linux-v4.19/arch/arm64/
DKconfig.debug73 bool "Align linker sections up to SECTION_SIZE"
75 If this option is enabled, sections that may potentially be marked as
77 the kernel. This prevents sections from being split into pages and
/Linux-v4.19/tools/perf/
Dbuiltin-config.c55 perf_config_items__for_each_entry(&set->sections, section) { in set_config()
81 perf_config_items__for_each_entry(&set->sections, section) { in show_spec_config()
/Linux-v4.19/arch/alpha/include/asm/
DKbuild12 generic-y += sections.h
/Linux-v4.19/arch/x86/
DMakefile191 cfi-sections := $(call as-instr,.cfi_sections .debug_frame,-DCONFIG_AS_CFI_SECTIONS=1)
203 KBUILD_AFLAGS += $(cfi) $(cfi-sigframe) $(cfi-sections) $(asinstr) $(avx_instr) $(avx2_instr) $(avx…
204 KBUILD_CFLAGS += $(cfi) $(cfi-sigframe) $(cfi-sections) $(asinstr) $(avx_instr) $(avx2_instr) $(avx…
/Linux-v4.19/tools/memory-model/litmus-tests/
DZ6.0+pooncelock+poonceLock+pombonce.litmus7 * used to ensure that accesses in different critical sections for a
/Linux-v4.19/arch/x86/boot/
Dsetup.ld62 . = ASSERT(__end_init <= 5*512, "init sections too big!");
/Linux-v4.19/arch/mips/include/asm/
DKbuild17 generic-y += sections.h

123456789