Searched defs:section (Results 1 - 6 of 6) sorted by relevance

/arch/parisc/include/asm/
H A Dmodule.h19 } *section; member in struct:mod_arch_specific
/arch/ia64/mm/
H A Dnuma.c55 * Because of holes evaluate on section limits.
56 * If the section of memory exists, then return the node where the section
59 * the section resides.
63 int i, section = pfn >> PFN_SECTION_SHIFT, ssec, esec; local
71 if (section >= last_ssec && section < last_esec)
78 if (section >= ssec && section < esec) {
/arch/x86/kernel/
H A Dmachine_kexec_64.c400 * sechdrs: Pointer to section headers.
401 * relsec: section index of SHT_RELA section.
412 Elf64_Shdr *section, *symtabsec; local
417 * ->sh_offset has been modified to keep the pointer to section
423 section = &sechdrs[sechdrs[relsec].sh_info];
425 pr_debug("Applying relocate section %u to %u\n", relsec,
433 /* Invalid strtab section number */
434 pr_err("Invalid string table section index %d\n",
441 /* section heade
[all...]
/arch/x86/boot/tools/
H A Dbuild.c150 u8 *section; local
156 section = &buf[pe_header + 0xa8];
158 section = &buf[pe_header + 0xb8];
162 if (strncmp((char*)section, section_name, 8) == 0) {
163 /* section header size field */
164 put_unaligned_le32(size, section + 0x8);
166 /* section header vma field */
167 put_unaligned_le32(vma, section + 0xc);
169 /* section header 'size of initialised data' field */
170 put_unaligned_le32(datasz, section
[all...]
/arch/parisc/kernel/
H A Dmodule.c32 * all sections at the beginning of the core or init section.
39 * to be reserved amount of memory in front of each individual section.
305 kfree(mod->arch.section);
306 mod->arch.section = NULL;
313 unsigned int section)
315 /* size needed for all stubs of this section (including
317 return (mod->arch.section[section].stub_entries + 1)
330 len = hdr->e_shnum * sizeof(me->arch.section[0]);
331 me->arch.section
312 arch_mod_section_prepend(struct module *mod, unsigned int section) argument
[all...]
/arch/x86/tools/
H A Drelocs.c25 struct section { struct
27 struct section *link;
32 static struct section *secs;
49 * as absolute (typically defined outside any section in the linker script.)
81 * as absolute (typically defined outside any section in the linker script.)
269 struct section *sec = &secs[i];
379 die("Bad section header entry\n");
391 secs = calloc(ehdr.e_shnum, sizeof(struct section));
393 die("Unable to allocate %d section headers\n",
401 struct section *se
[all...]

Completed in 147 milliseconds