Lines Matching refs:me

55 int apply_r_mips_none(struct module *me, u32 *location, Elf_Addr v)  in apply_r_mips_none()  argument
60 static int apply_r_mips_32_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_32_rel() argument
67 static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_26_rel() argument
71 me->name); in apply_r_mips_26_rel()
78 me->name); in apply_r_mips_26_rel()
88 static int apply_r_mips_hi16_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_hi16_rel() argument
103 n->next = me->arch.r_mips_hi16_list; in apply_r_mips_hi16_rel()
104 me->arch.r_mips_hi16_list = n; in apply_r_mips_hi16_rel()
120 static int apply_r_mips_lo16_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_lo16_rel() argument
129 if (me->arch.r_mips_hi16_list != NULL) { in apply_r_mips_lo16_rel()
130 l = me->arch.r_mips_hi16_list; in apply_r_mips_lo16_rel()
165 me->arch.r_mips_hi16_list = NULL; in apply_r_mips_lo16_rel()
179 me->arch.r_mips_hi16_list = NULL; in apply_r_mips_lo16_rel()
181 pr_err("module %s: dangerous R_MIPS_LO16 REL relocation\n", me->name); in apply_r_mips_lo16_rel()
186 static int (*reloc_handlers_rel[]) (struct module *me, u32 *location,
197 struct module *me) in apply_relocate() argument
209 me->arch.r_mips_hi16_list = NULL; in apply_relocate()
222 me->name, strtab + sym->st_name); in apply_relocate()
228 res = reloc_handlers_rel[ELF_MIPS_R_TYPE(rel[i])](me, location, v); in apply_relocate()
239 if (me->arch.r_mips_hi16_list) { in apply_relocate()
240 free_relocation_chain(me->arch.r_mips_hi16_list); in apply_relocate()
241 me->arch.r_mips_hi16_list = NULL; in apply_relocate()
272 struct module *me) in module_finalize() argument
278 jump_label_apply_nops(me); in module_finalize()
280 INIT_LIST_HEAD(&me->arch.dbe_list); in module_finalize()
284 me->arch.dbe_start = (void *)s->sh_addr; in module_finalize()
285 me->arch.dbe_end = (void *)s->sh_addr + s->sh_size; in module_finalize()
287 list_add(&me->arch.dbe_list, &dbe_list); in module_finalize()