Home
last modified time | relevance | path

Searched refs:me (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/linux-3.4.99/arch/s390/kernel/
Dmodule.c59 check_rela(Elf_Rela *rela, struct module *me) in check_rela() argument
63 info = me->arch.syminfo + ELF_R_SYM (rela->r_info); in check_rela()
78 info->got_offset = me->arch.got_size; in check_rela()
79 me->arch.got_size += sizeof(void*); in check_rela()
90 info->plt_offset = me->arch.plt_size; in check_rela()
91 me->arch.plt_size += PLT_ENTRY_SIZE; in check_rela()
110 char *secstrings, struct module *me) in module_frob_arch_sections() argument
127 printk(KERN_ERR "module %s: no symbol table\n", me->name); in module_frob_arch_sections()
132 me->arch.nsyms = symtab->sh_size / sizeof(Elf_Sym); in module_frob_arch_sections()
133 me->arch.syminfo = vmalloc(me->arch.nsyms * in module_frob_arch_sections()
[all …]
/linux-3.4.99/arch/parisc/kernel/
Dmodule.c84 me->name, strtab + sym->st_name, (unsigned long)val, bits); \
101 static inline int in_init(struct module *me, void *loc) in in_init() argument
103 return (loc >= me->module_init && in in_init()
104 loc <= (me->module_init + me->init_size)); in in_init()
107 static inline int in_core(struct module *me, void *loc) in in_core() argument
109 return (loc >= me->module_core && in in_core()
110 loc <= (me->module_core + me->core_size)); in in_core()
113 static inline int in_local(struct module *me, void *loc) in in_local() argument
115 return in_init(me, loc) || in_core(me, loc); in in_local()
327 struct module *me) in module_frob_arch_sections() argument
[all …]
/linux-3.4.99/arch/mips/kernel/
Dmodule.c56 static int apply_r_mips_none(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_none() argument
61 static int apply_r_mips_32_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_32_rel() argument
68 static int apply_r_mips_32_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_32_rela() argument
75 static int apply_r_mips_26_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_26_rel() argument
79 me->name); in apply_r_mips_26_rel()
86 me->name); in apply_r_mips_26_rel()
96 static int apply_r_mips_26_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_26_rela() argument
100 me->name); in apply_r_mips_26_rela()
107 me->name); in apply_r_mips_26_rela()
116 static int apply_r_mips_hi16_rel(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_hi16_rel() argument
[all …]
/linux-3.4.99/drivers/staging/mei/
Dmei-amt-version.c111 static bool mei_init(struct mei *me, const uuid_le *guid, in mei_init() argument
118 mei_deinit(me); in mei_init()
120 me->verbose = verbose; in mei_init()
122 me->fd = open("/dev/mei", O_RDWR); in mei_init()
123 if (me->fd == -1) { in mei_init()
124 mei_err(me, "Cannot establish a handle to the Intel MEI driver\n"); in mei_init()
127 memcpy(&me->guid, guid, sizeof(*guid)); in mei_init()
129 me->initialized = true; in mei_init()
131 memcpy(&data.in_client_uuid, &me->guid, sizeof(me->guid)); in mei_init()
132 result = ioctl(me->fd, IOCTL_MEI_CONNECT_CLIENT, &data); in mei_init()
[all …]
/linux-3.4.99/arch/powerpc/kernel/
Dmodule_64.c203 struct module *me) in module_frob_arch_sections() argument
211 me->arch.stubs_section = i; in module_frob_arch_sections()
213 me->arch.toc_section = i; in module_frob_arch_sections()
229 if (!me->arch.stubs_section) { in module_frob_arch_sections()
230 printk("%s: doesn't contain .stubs.\n", me->name); in module_frob_arch_sections()
238 if (!me->arch.toc_section) in module_frob_arch_sections()
239 me->arch.toc_section = me->arch.stubs_section; in module_frob_arch_sections()
242 sechdrs[me->arch.stubs_section].sh_size = get_stubs_size(hdr, sechdrs); in module_frob_arch_sections()
249 static inline unsigned long my_r2(Elf64_Shdr *sechdrs, struct module *me) in my_r2() argument
251 return sechdrs[me->arch.toc_section].sh_addr + 0x8000; in my_r2()
[all …]
Dmodule_32.c153 struct module *me) in module_frob_arch_sections() argument
160 me->arch.init_plt_section = i; in module_frob_arch_sections()
162 me->arch.core_plt_section = i; in module_frob_arch_sections()
164 if (!me->arch.core_plt_section || !me->arch.init_plt_section) { in module_frob_arch_sections()
170 sechdrs[me->arch.core_plt_section].sh_size in module_frob_arch_sections()
172 sechdrs[me->arch.init_plt_section].sh_size in module_frob_arch_sections()
/linux-3.4.99/net/netfilter/
Dnf_conntrack_helper.c96 if (h != NULL && !try_module_get(h->me)) in nf_conntrack_helper_try_module_get()
155 const struct nf_conntrack_helper *me) in unhelp() argument
163 ) == me) { in unhelp()
238 int nf_conntrack_helper_register(struct nf_conntrack_helper *me) in nf_conntrack_helper_register() argument
240 unsigned int h = helper_hash(&me->tuple); in nf_conntrack_helper_register()
242 BUG_ON(me->expect_policy == NULL); in nf_conntrack_helper_register()
243 BUG_ON(me->expect_class_max >= NF_CT_MAX_EXPECT_CLASSES); in nf_conntrack_helper_register()
244 BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1); in nf_conntrack_helper_register()
247 hlist_add_head_rcu(&me->hnode, &nf_ct_helper_hash[h]); in nf_conntrack_helper_register()
255 static void __nf_conntrack_helper_unregister(struct nf_conntrack_helper *me, in __nf_conntrack_helper_unregister() argument
[all …]
Dxt_tcpudp.c174 .me = THIS_MODULE,
183 .me = THIS_MODULE,
192 .me = THIS_MODULE,
201 .me = THIS_MODULE,
210 .me = THIS_MODULE,
219 .me = THIS_MODULE,
Dxt_dscp.c76 .me = THIS_MODULE,
84 .me = THIS_MODULE,
92 .me = THIS_MODULE,
100 .me = THIS_MODULE,
/linux-3.4.99/drivers/media/video/s5p-fimc/
Dfimc-mdevice.h87 #define me_subtype(me) \ argument
88 ((me->type) & (MEDIA_ENT_TYPE_MASK | MEDIA_ENT_SUBTYPE_MASK))
92 static inline struct fimc_md *entity_to_fimc_mdev(struct media_entity *me) in entity_to_fimc_mdev() argument
94 return me->parent == NULL ? NULL : in entity_to_fimc_mdev()
95 container_of(me->parent, struct fimc_md, media_dev); in entity_to_fimc_mdev()
111 void fimc_pipeline_prepare(struct fimc_dev *fimc, struct media_entity *me);
112 int fimc_pipeline_initialize(struct fimc_dev *fimc, struct media_entity *me,
/linux-3.4.99/arch/alpha/kernel/
Dmodule.c77 char *secstrings, struct module *me) in module_frob_arch_sections() argument
95 me->arch.gotsecindex = s - sechdrs; in module_frob_arch_sections()
99 printk(KERN_ERR "module %s: no symbol table\n", me->name); in module_frob_arch_sections()
103 printk(KERN_ERR "module %s: no got section\n", me->name); in module_frob_arch_sections()
112 me->name); in module_frob_arch_sections()
147 struct module *me) in apply_relocate_add() argument
163 gp = (u64)me->module_core + me->core_size - 0x8000; in apply_relocate_add()
164 got = sechdrs[me->arch.gotsecindex].sh_addr; 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()
[all …]
/linux-3.4.99/arch/x86/kernel/
Dmodule.c52 struct module *me) in apply_relocate() argument
81 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate()
92 struct module *me) in apply_relocate_add() argument
144 me->name, ELF64_R_TYPE(rel[i].r_info)); in apply_relocate_add()
154 me->name); in apply_relocate_add()
161 struct module *me) in module_finalize() argument
186 alternatives_smp_module_add(me, me->name, in module_finalize()
197 jump_label_apply_nops(me); in module_finalize()
/linux-3.4.99/fs/gfs2/
Dutil.c79 int me; in gfs2_assert_withdraw_i() local
80 me = gfs2_lm_withdraw(sdp, in gfs2_assert_withdraw_i()
86 return (me) ? -1 : -2; in gfs2_assert_withdraw_i()
197 int me; in gfs2_meta_check_ii() local
198 me = gfs2_lm_withdraw(sdp, in gfs2_meta_check_ii()
205 return (me) ? -1 : -2; in gfs2_meta_check_ii()
218 int me; in gfs2_metatype_check_ii() local
219 me = gfs2_lm_withdraw(sdp, in gfs2_metatype_check_ii()
226 return (me) ? -1 : -2; in gfs2_metatype_check_ii()
/linux-3.4.99/arch/m32r/kernel/
Dmodule.c75 struct module *me) in apply_relocate_add() argument
149 me->name, relocation); in apply_relocate_add()
157 me->name, value); in apply_relocate_add()
181 me->name, relocation); in apply_relocate_add()
189 me->name, value); in apply_relocate_add()
198 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add()
209 struct module *me) in apply_relocate() argument
213 me->name); in apply_relocate()
/linux-3.4.99/arch/tile/kernel/
Dmodule.c108 static int validate_hw2_last(long value, struct module *me) in validate_hw2_last() argument
112 me->name, value); in validate_hw2_last()
138 struct module *me) in apply_relocate_add() argument
190 if (!validate_hw2_last(value, me)) in apply_relocate_add()
201 if (!validate_hw2_last(value, me)) in apply_relocate_add()
216 " %#llx at %#llx (%p)\n", me->name, in apply_relocate_add()
229 me->name, (int) ELF_R_TYPE(rel[i].r_info)); in apply_relocate_add()
/linux-3.4.99/arch/score/kernel/
Dmodule.c32 struct module *me) in apply_relocate() argument
49 me->name, relindex, i); in apply_relocate()
59 me->name, relindex, i, rel->r_offset, in apply_relocate()
120 me->name, ELF32_R_TYPE(rel->r_info)); in apply_relocate()
130 struct module *me) in apply_relocate_add() argument
/linux-3.4.99/Documentation/aoe/
Dudev-install.sh5 me="`basename $0`"
16 echo "$me Error: no udev.conf found" 1>&2
30 echo "$me Error: cannot find udev rules directory" 1>&2
/linux-3.4.99/scripts/
Dextract-vmlinux39 me=${0##*/}
43 echo "Usage: $me <kernel-image>" >&2
62 echo "$me: Cannot find vmlinux." >&2
Dextract-ikconfig42 me=${0##*/}
46 echo "Usage: $me <kernel-image>" >&2
66 echo "$me: Cannot find kernel config." >&2
/linux-3.4.99/arch/sh/kernel/
Dmodule.c41 struct module *me) in apply_relocate_add() argument
105 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add()
114 struct module *me) in module_finalize() argument
118 ret |= module_dwarf_finalize(hdr, sechdrs, me); in module_finalize()
/linux-3.4.99/fs/ext4/
Dioctl.c228 struct move_extent me; in ext4_ioctl() local
236 if (copy_from_user(&me, in ext4_ioctl()
237 (struct move_extent __user *)arg, sizeof(me))) in ext4_ioctl()
239 me.moved_len = 0; in ext4_ioctl()
241 donor_filp = fget(me.donor_fd); in ext4_ioctl()
261 err = ext4_move_extents(filp, donor_filp, me.orig_start, in ext4_ioctl()
262 me.donor_start, me.len, &me.moved_len); in ext4_ioctl()
266 &me, sizeof(me))) in ext4_ioctl()
/linux-3.4.99/drivers/staging/omapdrm/
Dtcm-sita.c606 struct score me; /* score for area */ in update_candidate() local
615 assign(&me.a, x0, y0, x0 + w - 1, y0 + h - 1); in update_candidate()
619 get_neighbor_stats(tcm, &me.a, &me.n); in update_candidate()
620 me.neighs = me.n.edge + me.n.busy; in update_candidate()
621 get_nearness_factor(field, &me.a, &me.f); in update_candidate()
632 best->neighs <= me.neighs && in update_candidate()
633 (best->neighs < me.neighs || in update_candidate()
635 best->n.busy < me.n.busy || in update_candidate()
636 (best->n.busy == me.n.busy && in update_candidate()
638 best->f.x + best->f.y > me.f.x + me.f.y))) in update_candidate()
[all …]
/linux-3.4.99/arch/mn10300/kernel/
Dmodule.c60 struct module *me) in apply_relocate_add() argument
96 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add()
146 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add()
152 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add()
/linux-3.4.99/arch/sparc/kernel/
Dleon_smp.c129 int me = smp_processor_id(); in leon_configure_cache_smp() local
134 (unsigned int)cfg, (unsigned int)me); in leon_configure_cache_smp()
141 me); in leon_configure_cache_smp()
186 int me = smp_processor_id(); in leon_boot_cpus() local
191 printk(KERN_INFO "%d:(%d:%d) cpus mpirq at 0x%x\n", (unsigned int)me, in leon_boot_cpus()
195 leon_enable_irq_cpu(LEON3_IRQ_CROSS_CALL, me); in leon_boot_cpus()
196 leon_enable_irq_cpu(LEON3_IRQ_TICKER, me); in leon_boot_cpus()
197 leon_enable_irq_cpu(leon_ipi_irq, me); in leon_boot_cpus()
/linux-3.4.99/arch/um/kernel/
Dsmp.c107 int err, cpu, me = smp_processor_id(); in smp_prepare_cpus() local
113 set_cpu_online(me, true); in smp_prepare_cpus()
114 cpu_set(me, cpu_callin_map); in smp_prepare_cpus()
116 err = os_pipe(cpu_data[me].ipi_pipe, 1, 1); in smp_prepare_cpus()
120 os_set_fd_async(cpu_data[me].ipi_pipe[0]); in smp_prepare_cpus()

12345678910>>...18