Home
last modified time | relevance | path

Searched refs:r_type (Results 1 – 11 of 11) sorted by relevance

/linux-4.1.27/arch/s390/kernel/
Dmodule.c214 int r_type, r_sym; in apply_rela() local
222 r_type = ELF_R_TYPE(rela->r_info); in apply_rela()
226 switch (r_type) { in apply_rela()
237 if (r_type == R_390_8) in apply_rela()
239 else if (r_type == R_390_12) in apply_rela()
241 else if (r_type == R_390_16) in apply_rela()
243 else if (r_type == R_390_20) in apply_rela()
245 else if (r_type == R_390_32) in apply_rela()
247 else if (r_type == R_390_64) in apply_rela()
256 if (r_type == R_390_PC16) in apply_rela()
[all …]
/linux-4.1.27/arch/alpha/kernel/
Dmodule.c45 unsigned long r_type = ELF64_R_TYPE (rela->r_info); in process_reloc_for_got() local
49 if (r_type != R_ALPHA_LITERAL) in process_reloc_for_got()
168 unsigned long r_type = ELF64_R_TYPE (rela[i].r_info); in apply_relocate_add() local
169 unsigned long r_got_offset = r_type >> 8; in apply_relocate_add()
171 r_type &= 0xff; in apply_relocate_add()
181 switch (r_type) { in apply_relocate_add()
266 me->name, r_type); in apply_relocate_add()
272 me->name, r_type, sym->st_shndx); in apply_relocate_add()
276 me->name, r_type, strtab + sym->st_name); in apply_relocate_add()
/linux-4.1.27/arch/ia64/kernel/
Dmodule.c625 do_reloc (struct module *mod, uint8_t r_type, Elf64_Sym *sym, uint64_t addend, in do_reloc() argument
628 enum reloc_target_format format = (r_type >> FORMAT_SHIFT) & FORMAT_MASK; in do_reloc()
629 enum reloc_value_formula formula = (r_type >> VALUE_SHIFT) & VALUE_MASK; in do_reloc()
648 switch (r_type) { in do_reloc()
676 switch (r_type) { in do_reloc()
695 if (r_type == R_IA64_PCREL21BI) { in do_reloc()
699 reloc_name[r_type], (unsigned long)val); in do_reloc()
708 switch (r_type) { in do_reloc()
713 if (r_type == R_IA64_IPLTMSB) in do_reloc()
739 if (reloc_name[r_type]) in do_reloc()
[all …]
/linux-4.1.27/arch/x86/tools/
Drelocs.c753 unsigned r_type = ELF64_R_TYPE(rel->r_info); in do_reloc64() local
766 switch (r_type) { in do_reloc64()
798 rel_type(r_type), symname); in do_reloc64()
811 if (r_type == R_X86_64_64) in do_reloc64()
819 rel_type(r_type), r_type); in do_reloc64()
831 unsigned r_type = ELF32_R_TYPE(rel->r_info); in do_reloc32() local
834 switch (r_type) { in do_reloc32()
855 rel_type(r_type), symname); in do_reloc32()
864 rel_type(r_type), r_type); in do_reloc32()
874 unsigned r_type = ELF32_R_TYPE(rel->r_info); in do_reloc_real() local
[all …]
/linux-4.1.27/arch/mips/include/asm/
Dmodule.h24 Elf64_Byte r_type; /* First relocation. */ member
33 Elf64_Byte r_type; /* First relocation. */ member
69 #define ELF_MIPS_R_TYPE(rel) (rel.r_type)
/linux-4.1.27/arch/powerpc/boot/
Drs6000.h232 char r_type[1]; member
/linux-4.1.27/scripts/
Drecordmcount.c299 myElf64_Byte r_type; /* First relocation. */ member
311 .r_mips = { .r_sym = w(sym), .r_type = type } in MIPS64_r_info()
/linux-4.1.27/include/uapi/linux/
Dcoff.h340 char r_type[2]; /* Relocation type */ member
/linux-4.1.27/fs/xfs/
Dxfs_log_priv.h163 uint r_type; /* region's transaction type :4 */ member
Dxfs_log.c362 tic->t_res_arr[tic->t_res_num].r_type = type; in xlog_tic_add_region()
2056 uint r_type = ticket->t_res_arr[i].r_type; in xlog_print_tic_res() local
2058 ((r_type <= 0 || r_type > XLOG_REG_TYPE_MAX) ? in xlog_print_tic_res()
2059 "bad-rtype" : res_type_str[r_type-1]), in xlog_print_tic_res()
/linux-4.1.27/net/9p/
Dclient.c448 int8_t r_type; in p9_parse_header() local
458 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag); in p9_parse_header()
463 pdu->id = r_type; in p9_parse_header()
470 *type = r_type; in p9_parse_header()