Home
last modified time | relevance | path

Searched refs:me (Results 1 – 200 of 472) sorted by relevance

123

/linux-4.4.14/drivers/staging/lustre/lnet/lnet/
Dlib-me.c83 struct lnet_me *me; in LNetMEAttach() local
97 me = lnet_me_alloc(); in LNetMEAttach()
98 if (me == NULL) in LNetMEAttach()
103 me->me_portal = portal; in LNetMEAttach()
104 me->me_match_id = match_id; in LNetMEAttach()
105 me->me_match_bits = match_bits; in LNetMEAttach()
106 me->me_ignore_bits = ignore_bits; in LNetMEAttach()
107 me->me_unlink = unlink; in LNetMEAttach()
108 me->me_md = NULL; in LNetMEAttach()
111 &me->me_lh); in LNetMEAttach()
[all …]
Dlib-ptl.c146 lnet_me_t *me = md->md_me; in lnet_try_match_md() local
157 if (me->me_match_id.nid != LNET_NID_ANY && in lnet_try_match_md()
158 me->me_match_id.nid != info->mi_id.nid) in lnet_try_match_md()
161 if (me->me_match_id.pid != LNET_PID_ANY && in lnet_try_match_md()
162 me->me_match_id.pid != info->mi_id.pid) in lnet_try_match_md()
166 if (((me->me_match_bits ^ info->mi_mbits) & ~me->me_ignore_bits) != 0) in lnet_try_match_md()
377 lnet_me_t *me; in lnet_mt_match_md() local
392 list_for_each_entry_safe(me, tmp, head, me_list) { in lnet_mt_match_md()
394 if (me->me_md == NULL) in lnet_mt_match_md()
397 LASSERT(me == me->me_md->md_me); in lnet_mt_match_md()
[all …]
Dlib-md.c51 lnet_me_t *me = md->md_me; in lnet_md_unlink() local
58 if (me != NULL) { in lnet_md_unlink()
60 lnet_ptl_detach_md(me, md); in lnet_md_unlink()
61 if (me->me_unlink == LNET_UNLINK) in lnet_md_unlink()
62 lnet_me_unlink(me); in lnet_md_unlink()
271 struct lnet_me *me; in LNetMDAttach() local
298 me = lnet_handle2me(&meh); in LNetMDAttach()
299 if (me == NULL) in LNetMDAttach()
301 else if (me->me_md != NULL) in LNetMDAttach()
311 lnet_ptl_attach_md(me, md, &matches, &drops); in LNetMDAttach()
DMakefile4 lib-me.o lib-msg.o lib-eq.o lib-md.o lib-ptl.o \
/linux-4.4.14/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()
321 struct module *me) in module_frob_arch_sections() argument
[all …]
/linux-4.4.14/arch/s390/kernel/
Dmodule.c58 static void check_rela(Elf_Rela *rela, struct module *me) in check_rela() argument
62 info = me->arch.syminfo + ELF_R_SYM (rela->r_info); in check_rela()
77 info->got_offset = me->arch.got_size; in check_rela()
78 me->arch.got_size += sizeof(void*); in check_rela()
89 info->plt_offset = me->arch.plt_size; in check_rela()
90 me->arch.plt_size += PLT_ENTRY_SIZE; in check_rela()
108 char *secstrings, struct module *me) in module_frob_arch_sections() argument
125 printk(KERN_ERR "module %s: no symbol table\n", me->name); in module_frob_arch_sections()
130 me->arch.nsyms = symtab->sh_size / sizeof(Elf_Sym); in module_frob_arch_sections()
131 me->arch.syminfo = vmalloc(me->arch.nsyms * in module_frob_arch_sections()
[all …]
/linux-4.4.14/arch/mips/kernel/
Dmodule.c55 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()
[all …]
Dmodule-rela.c26 extern int apply_r_mips_none(struct module *me, u32 *location, Elf_Addr v);
28 static int apply_r_mips_32_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_32_rela() argument
35 static int apply_r_mips_26_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_26_rela() argument
39 me->name); in apply_r_mips_26_rela()
46 me->name); in apply_r_mips_26_rela()
55 static int apply_r_mips_hi16_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_hi16_rela() argument
63 static int apply_r_mips_lo16_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_lo16_rela() argument
70 static int apply_r_mips_64_rela(struct module *me, u32 *location, Elf_Addr v) in apply_r_mips_64_rela() argument
77 static int apply_r_mips_higher_rela(struct module *me, u32 *location, in apply_r_mips_higher_rela() argument
86 static int apply_r_mips_highest_rela(struct module *me, u32 *location, in apply_r_mips_highest_rela() argument
[all …]
Dvpe.c228 static int apply_r_mips_none(struct module *me, uint32_t *location, in apply_r_mips_none() argument
234 static int apply_r_mips_gprel16(struct module *me, uint32_t *location, in apply_r_mips_gprel16() argument
259 static int apply_r_mips_pc16(struct module *me, uint32_t *location, in apply_r_mips_pc16() argument
278 static int apply_r_mips_32(struct module *me, uint32_t *location, in apply_r_mips_32() argument
286 static int apply_r_mips_26(struct module *me, uint32_t *location, in apply_r_mips_26() argument
311 static int apply_r_mips_hi16(struct module *me, uint32_t *location, in apply_r_mips_hi16() argument
333 static int apply_r_mips_lo16(struct module *me, uint32_t *location, in apply_r_mips_lo16() argument
404 static int (*reloc_handlers[]) (struct module *me, uint32_t *location,
429 struct module *me) in apply_relocations() argument
450 me->name, strtab + sym->st_name); in apply_relocations()
[all …]
/linux-4.4.14/Documentation/misc-devices/mei/
Dmei-amt-version.c111 static bool mei_init(struct mei *me, const uuid_le *guid, in mei_init() argument
118 me->verbose = verbose; in mei_init()
120 me->fd = open("/dev/mei", O_RDWR); in mei_init()
121 if (me->fd == -1) { in mei_init()
122 mei_err(me, "Cannot establish a handle to the Intel MEI driver\n"); in mei_init()
125 memcpy(&me->guid, guid, sizeof(*guid)); in mei_init()
127 me->initialized = true; in mei_init()
129 memcpy(&data.in_client_uuid, &me->guid, sizeof(me->guid)); in mei_init()
130 result = ioctl(me->fd, IOCTL_MEI_CONNECT_CLIENT, &data); in mei_init()
132 mei_err(me, "IOCTL_MEI_CONNECT_CLIENT receive message. err=%d\n", result); in mei_init()
[all …]
/linux-4.4.14/arch/powerpc/kernel/
Dmodule_64.c364 struct module *me) in module_frob_arch_sections() argument
372 me->arch.stubs_section = i; in module_frob_arch_sections()
374 me->arch.toc_section = i; in module_frob_arch_sections()
390 if (!me->arch.stubs_section) { in module_frob_arch_sections()
391 pr_err("%s: doesn't contain .stubs.\n", me->name); in module_frob_arch_sections()
399 if (!me->arch.toc_section) in module_frob_arch_sections()
400 me->arch.toc_section = me->arch.stubs_section; in module_frob_arch_sections()
403 sechdrs[me->arch.stubs_section].sh_size = get_stubs_size(hdr, sechdrs); in module_frob_arch_sections()
410 static inline unsigned long my_r2(Elf64_Shdr *sechdrs, struct module *me) in my_r2() argument
412 return sechdrs[me->arch.toc_section].sh_addr + 0x8000; in my_r2()
[all …]
Dmodule_32.c149 struct module *me) in module_frob_arch_sections() argument
156 me->arch.init_plt_section = i; in module_frob_arch_sections()
158 me->arch.core_plt_section = i; in module_frob_arch_sections()
160 if (!me->arch.core_plt_section || !me->arch.init_plt_section) { in module_frob_arch_sections()
166 sechdrs[me->arch.core_plt_section].sh_size in module_frob_arch_sections()
168 sechdrs[me->arch.init_plt_section].sh_size in module_frob_arch_sections()
Dmodule.c47 const Elf_Shdr *sechdrs, struct module *me) in module_finalize() argument
/linux-4.4.14/net/netfilter/
Dnf_conntrack_helper.c163 if (h != NULL && !try_module_get(h->me)) in nf_conntrack_helper_try_module_get()
255 const struct nf_conntrack_helper *me) in unhelp() argument
260 if (help && rcu_dereference_raw(help->helper) == me) { in unhelp()
362 int nf_conntrack_helper_register(struct nf_conntrack_helper *me) in nf_conntrack_helper_register() argument
366 unsigned int h = helper_hash(&me->tuple); in nf_conntrack_helper_register()
368 BUG_ON(me->expect_policy == NULL); in nf_conntrack_helper_register()
369 BUG_ON(me->expect_class_max >= NF_CT_MAX_EXPECT_CLASSES); in nf_conntrack_helper_register()
370 BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1); in nf_conntrack_helper_register()
374 if (strncmp(cur->name, me->name, NF_CT_HELPER_NAME_LEN) == 0 && in nf_conntrack_helper_register()
375 cur->tuple.src.l3num == me->tuple.src.l3num && in nf_conntrack_helper_register()
[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,
Dxt_NFQUEUE.c118 .me = THIS_MODULE,
127 .me = THIS_MODULE,
136 .me = THIS_MODULE,
145 .me = THIS_MODULE,
Dxt_set.c563 .me = THIS_MODULE
573 .me = THIS_MODULE
583 .me = THIS_MODULE
594 .me = THIS_MODULE
604 .me = THIS_MODULE
615 .me = THIS_MODULE
625 .me = THIS_MODULE
636 .me = THIS_MODULE
646 .me = THIS_MODULE
659 .me = THIS_MODULE
[all …]
Dxt_DSCP.c124 .me = THIS_MODULE,
133 .me = THIS_MODULE,
142 .me = THIS_MODULE,
151 .me = THIS_MODULE,
Dxt_nat.c115 .me = THIS_MODULE,
127 .me = THIS_MODULE,
137 .me = THIS_MODULE,
147 .me = THIS_MODULE,
Dxt_CLASSIFY.c49 .me = THIS_MODULE,
58 .me = THIS_MODULE,
Dxt_socket.c464 .me = THIS_MODULE,
475 .me = THIS_MODULE,
487 .me = THIS_MODULE,
499 .me = THIS_MODULE,
511 .me = THIS_MODULE,
523 .me = THIS_MODULE,
535 .me = THIS_MODULE,
Dxt_length.c48 .me = THIS_MODULE,
55 .me = THIS_MODULE,
Dxt_mark.c51 .me = THIS_MODULE,
60 .me = THIS_MODULE,
Dxt_CT.c99 module_put(helper->me); in xt_ct_set_helper()
342 module_put(help->helper->me); in xt_ct_tg_destroy()
380 .me = THIS_MODULE,
391 .me = THIS_MODULE,
402 .me = THIS_MODULE,
437 .me = THIS_MODULE,
Dxt_hl.c73 .me = THIS_MODULE,
81 .me = THIS_MODULE,
Dxt_REDIRECT.c79 .me = THIS_MODULE,
91 .me = THIS_MODULE,
Dxt_ipcomp.c87 .me = THIS_MODULE,
96 .me = THIS_MODULE,
Dxt_esp.c83 .me = THIS_MODULE,
92 .me = THIS_MODULE,
Dxt_LOG.c80 .me = THIS_MODULE,
90 .me = THIS_MODULE,
Dxt_tcpmss.c87 .me = THIS_MODULE,
95 .me = THIS_MODULE,
Dxt_HL.c142 .me = THIS_MODULE,
152 .me = THIS_MODULE,
Dxt_TCPOPTSTRIP.c125 .me = THIS_MODULE,
135 .me = THIS_MODULE,
Dxt_connmark.c130 .me = THIS_MODULE,
141 .me = THIS_MODULE,
Dxt_ecn.c156 .me = THIS_MODULE,
164 .me = THIS_MODULE,
Dxt_TEE.c132 .me = THIS_MODULE,
143 .me = THIS_MODULE,
Dxt_multiport.c140 .me = THIS_MODULE,
149 .me = THIS_MODULE,
Dxt_iprange.c111 .me = THIS_MODULE,
119 .me = THIS_MODULE,
Dnf_conntrack_proto.c87 if (!try_module_get(p->me)) in nf_ct_l3proto_find_get()
123 module_put(p->me); in nf_ct_l3proto_module_put()
135 if (!try_module_get(p->me)) in nf_ct_l4proto_find_get()
145 module_put(p->me); in nf_ct_l4proto_put()
Dxt_dccp.c148 .me = THIS_MODULE,
157 .me = THIS_MODULE,
Dxt_comment.c31 .me = THIS_MODULE,
Dxt_TRACE.c26 .me = THIS_MODULE,
Dxt_sctp.c174 .me = THIS_MODULE
183 .me = THIS_MODULE
Dxt_NETMAP.c130 .me = THIS_MODULE,
144 .me = THIS_MODULE,
Dxt_conntrack.c297 .me = THIS_MODULE,
307 .me = THIS_MODULE,
317 .me = THIS_MODULE,
Dxt_realm.c40 .me = THIS_MODULE
Dxt_cpu.c51 .me = THIS_MODULE,
Dxt_AUDIT.c208 .me = THIS_MODULE,
216 .me = THIS_MODULE,
Dxt_policy.c163 .me = THIS_MODULE,
171 .me = THIS_MODULE,
Dxt_CHECKSUM.c56 .me = THIS_MODULE,
Dnf_conntrack_netbios_ns.c54 .me = THIS_MODULE,
Dxt_mac.c52 .me = THIS_MODULE,
Dxt_cgroup.c55 .me = THIS_MODULE,
Dxt_pkttype.c51 .me = THIS_MODULE,
Dnf_conntrack_amanda.c178 .me = THIS_MODULE,
187 .me = THIS_MODULE,
Dnft_compat.c245 module_put(target->me); in nft_target_init()
263 module_put(target->me); in nft_target_destroy()
427 module_put(match->me); in nft_match_init()
445 module_put(match->me); in nft_match_destroy()
652 if (!try_module_get(match->me)) in nft_match_select_ops()
732 if (!try_module_get(target->me)) in nft_target_select_ops()
Dxt_state.c65 .me = THIS_MODULE,
Dxt_bpf.c60 .me = THIS_MODULE,
Dxt_nfacct.c65 .me = THIS_MODULE,
Dxt_addrtype.c223 .me = THIS_MODULE
232 .me = THIS_MODULE
Dxt_devgroup.c68 .me = THIS_MODULE
Dnf_conntrack_snmp.c61 .me = THIS_MODULE,
Dxt_NFLOG.c59 .me = THIS_MODULE,
Dxt_helper.c85 .me = THIS_MODULE,
Dxt_quota.c76 .me = THIS_MODULE,
Dxt_connlabel.c77 .me = THIS_MODULE,
Dxt_l2tp.c324 .me = THIS_MODULE,
338 .me = THIS_MODULE,
Dxt_statistic.c87 .me = THIS_MODULE,
Dxt_string.c80 .me = THIS_MODULE,
Dxt_CONNSECMARK.c129 .me = THIS_MODULE,
Dxt_owner.c83 .me = THIS_MODULE,
Dxt_SECMARK.c133 .me = THIS_MODULE,
Dxt_u32.c104 .me = THIS_MODULE,
Dxt_TCPMSS.c324 .me = THIS_MODULE,
334 .me = THIS_MODULE,
Dxt_TPROXY.c553 .me = THIS_MODULE,
564 .me = THIS_MODULE,
576 .me = THIS_MODULE,
/linux-4.4.14/arch/metag/kernel/
Dmodule.c135 struct module *me) in module_frob_arch_sections() argument
142 me->arch.init_plt_section = i; in module_frob_arch_sections()
144 me->arch.core_plt_section = i; in module_frob_arch_sections()
146 if (!me->arch.core_plt_section || !me->arch.init_plt_section) { in module_frob_arch_sections()
152 sechdrs[me->arch.core_plt_section].sh_size in module_frob_arch_sections()
154 sechdrs[me->arch.core_plt_section].sh_type = SHT_NOBITS; in module_frob_arch_sections()
155 sechdrs[me->arch.init_plt_section].sh_size in module_frob_arch_sections()
157 sechdrs[me->arch.init_plt_section].sh_type = SHT_NOBITS; in module_frob_arch_sections()
202 struct module *me) in apply_relocate_add() argument
257 sechdrs, me); in apply_relocate_add()
[all …]
/linux-4.4.14/fs/gfs2/
Dutil.c90 int me; in gfs2_assert_withdraw_i() local
91 me = gfs2_lm_withdraw(sdp, in gfs2_assert_withdraw_i()
96 return (me) ? -1 : -2; in gfs2_assert_withdraw_i()
200 int me; in gfs2_meta_check_ii() local
201 me = gfs2_lm_withdraw(sdp, in gfs2_meta_check_ii()
207 return (me) ? -1 : -2; in gfs2_meta_check_ii()
220 int me; in gfs2_metatype_check_ii() local
221 me = gfs2_lm_withdraw(sdp, in gfs2_metatype_check_ii()
227 return (me) ? -1 : -2; in gfs2_metatype_check_ii()
/linux-4.4.14/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-4.4.14/drivers/misc/mei/
DMakefile17 obj-$(CONFIG_INTEL_MEI_ME) += mei-me.o
18 mei-me-objs := pci-me.o
19 mei-me-objs += hw-me.o
/linux-4.4.14/arch/x86/kernel/
Dmodule.c103 struct module *me) in apply_relocate() argument
132 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate()
143 struct module *me) in apply_relocate_add() argument
195 me->name, ELF64_R_TYPE(rel[i].r_info)); in apply_relocate_add()
205 me->name); in apply_relocate_add()
212 struct module *me) in module_finalize() argument
237 alternatives_smp_module_add(me, me->name, in module_finalize()
248 jump_label_apply_nops(me); in module_finalize()
Dprocess_64.c161 struct task_struct *me = current; in copy_thread_tls() local
170 p->thread.gs = p->thread.gsindex ? 0 : me->thread.gs; in copy_thread_tls()
172 p->thread.fs = p->thread.fsindex ? 0 : me->thread.fs; in copy_thread_tls()
196 if (unlikely(test_tsk_thread_flag(me, TIF_IO_BITMAP))) { in copy_thread_tls()
197 p->thread.io_bitmap_ptr = kmemdup(me->thread.io_bitmap_ptr, in copy_thread_tls()
Dprocess.c99 struct task_struct *me = current; in exit_thread() local
100 struct thread_struct *t = &me->thread; in exit_thread()
/linux-4.4.14/arch/tile/kernel/
Dmodule.c96 static int validate_hw2_last(long value, struct module *me) in validate_hw2_last() argument
100 me->name, value); in validate_hw2_last()
126 struct module *me) in apply_relocate_add() argument
188 if (!validate_hw2_last(value, me)) in apply_relocate_add()
199 if (!validate_hw2_last(value, me)) in apply_relocate_add()
214 me->name, in apply_relocate_add()
227 me->name, (int) ELF_R_TYPE(rel[i].r_info)); in apply_relocate_add()
/linux-4.4.14/include/linux/
Dmoduleloader.h46 struct module *me) in apply_relocate() argument
49 module_name(me)); in apply_relocate()
69 struct module *me) in apply_relocate_add() argument
72 module_name(me)); in apply_relocate_add()
/linux-4.4.14/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
Dstatus.sh9 me=`basename $0`
17 echo "$me Error: sysfs is not mounted" 1>&2
/linux-4.4.14/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()
/linux-4.4.14/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
67 echo "$me: Cannot find kernel config." >&2
/linux-4.4.14/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()
Ddwarf.c1094 struct module *me) in module_dwarf_finalize() argument
1114 INIT_LIST_HEAD(&me->arch.cie_list); in module_dwarf_finalize()
1115 INIT_LIST_HEAD(&me->arch.fde_list); in module_dwarf_finalize()
1116 err = dwarf_parse_section((char *)start, (char *)end, me); in module_dwarf_finalize()
1119 me->name); in module_dwarf_finalize()
/linux-4.4.14/arch/sparc/kernel/
Dleon_smp.c112 int me = smp_processor_id(); in leon_configure_cache_smp() local
117 (unsigned int)cfg, (unsigned int)me); in leon_configure_cache_smp()
124 me); in leon_configure_cache_smp()
162 int me = smp_processor_id(); in leon_boot_cpus() local
167 printk(KERN_INFO "%d:(%d:%d) cpus mpirq at 0x%x\n", (unsigned int)me, in leon_boot_cpus()
171 leon_enable_irq_cpu(LEON3_IRQ_CROSS_CALL, me); in leon_boot_cpus()
172 leon_enable_irq_cpu(LEON3_IRQ_TICKER, me); in leon_boot_cpus()
173 leon_enable_irq_cpu(leon_ipi_irq, me); in leon_boot_cpus()
Dmodule.c86 struct module *me) in apply_relocate_add() argument
174 me->name, in apply_relocate_add()
208 struct module *me) in module_finalize() argument
211 jump_label_apply_nops(me); in module_finalize()
Ditlb_miss.S17 nop ! Delay slot, fill me
/linux-4.4.14/drivers/gpu/drm/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-4.4.14/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-4.4.14/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()
/linux-4.4.14/arch/m68k/kernel/
Dmodule.c26 struct module *me) in apply_relocate() argument
55 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate()
66 struct module *me) in apply_relocate_add() argument
95 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add()
/linux-4.4.14/include/linux/netfilter_bridge/
Debtables.h37 struct module *me; member
54 struct module *me; member
72 struct module *me; member
106 struct module *me; member
/linux-4.4.14/Documentation/DocBook/
Dkernel-locking.xml.db19 API-queue-me
20 API-unqueue-me
22 API-futex-wait-queue-me
/linux-4.4.14/arch/h8300/kernel/
Dmodule.c12 struct module *me) in apply_relocate_add() argument
61 me->name, ELF32_R_TYPE(rela[i].r_info)); in apply_relocate_add()
68 me->name, rela[i].r_offset); in apply_relocate_add()
/linux-4.4.14/drivers/staging/lustre/include/linux/lnet/
Dlib-lnet.h223 lnet_me_t *me; in lnet_me_alloc() local
225 LIBCFS_ALLOC(me, sizeof(*me)); in lnet_me_alloc()
226 return me; in lnet_me_alloc()
230 lnet_me_free(lnet_me_t *me) in lnet_me_free() argument
232 LIBCFS_FREE(me, sizeof(*me)); in lnet_me_free()
329 lnet_me2handle(lnet_handle_me_t *handle, lnet_me_t *me) in lnet_me2handle() argument
331 handle->cookie = me->me_lh.lh_cookie; in lnet_me2handle()
513 void lnet_ptl_attach_md(lnet_me_t *me, lnet_libmd_t *md,
515 void lnet_ptl_detach_md(lnet_me_t *me, lnet_libmd_t *md);
617 void lnet_me_unlink(lnet_me_t *me);
/linux-4.4.14/fs/ext4/
Dioctl.c411 struct move_extent me; in ext4_ioctl() local
419 if (copy_from_user(&me, in ext4_ioctl()
420 (struct move_extent __user *)arg, sizeof(me))) in ext4_ioctl()
422 me.moved_len = 0; in ext4_ioctl()
424 donor = fdget(me.donor_fd); in ext4_ioctl()
444 err = ext4_move_extents(filp, donor.file, me.orig_start, in ext4_ioctl()
445 me.donor_start, me.len, &me.moved_len); in ext4_ioctl()
449 &me, sizeof(me))) in ext4_ioctl()
/linux-4.4.14/kernel/
Dsys.c2064 static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr) in prctl_get_tid_address() argument
2066 return put_user(me->clear_child_tid, tid_addr); in prctl_get_tid_address()
2069 static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr) in prctl_get_tid_address() argument
2078 struct task_struct *me = current; in SYSCALL_DEFINE5() local
2079 unsigned char comm[sizeof(me->comm)]; in SYSCALL_DEFINE5()
2093 me->pdeath_signal = arg2; in SYSCALL_DEFINE5()
2096 error = put_user(me->pdeath_signal, (int __user *)arg2); in SYSCALL_DEFINE5()
2099 error = get_dumpable(me->mm); in SYSCALL_DEFINE5()
2106 set_dumpable(me->mm, arg2); in SYSCALL_DEFINE5()
2110 error = SET_UNALIGN_CTL(me, arg2); in SYSCALL_DEFINE5()
[all …]
Dpid_namespace.c188 struct task_struct *task, *me = current; in zap_pid_ns_processes() local
189 int init_pids = thread_group_leader(me) ? 1 : 2; in zap_pid_ns_processes()
199 spin_lock_irq(&me->sighand->siglock); in zap_pid_ns_processes()
200 me->sighand->action[SIGCHLD - 1].sa.sa_handler = SIG_IGN; in zap_pid_ns_processes()
201 spin_unlock_irq(&me->sighand->siglock); in zap_pid_ns_processes()
/linux-4.4.14/drivers/media/platform/exynos4-is/
Dmedia-dev.h165 static inline struct fimc_md *entity_to_fimc_mdev(struct media_entity *me) in entity_to_fimc_mdev() argument
167 return me->parent == NULL ? NULL : in entity_to_fimc_mdev()
168 container_of(me->parent, struct fimc_md, media_dev); in entity_to_fimc_mdev()
Dfimc-isp-video.c278 struct media_entity *me = &ve->vdev.entity; in isp_video_open() local
293 mutex_lock(&me->parent->graph_mutex); in isp_video_open()
295 ret = fimc_pipeline_call(ve, open, me, true); in isp_video_open()
299 me->use_count++; in isp_video_open()
301 mutex_unlock(&me->parent->graph_mutex); in isp_video_open()
497 struct media_entity *me = &ve->vdev.entity; in isp_video_streamon() local
500 ret = media_entity_pipeline_start(me, &ve->pipe->mp); in isp_video_streamon()
515 media_entity_pipeline_stop(me); in isp_video_streamon()
Dmedia-dev.c68 struct media_entity *me) in fimc_pipeline_prepare() argument
70 struct fimc_md *fmd = entity_to_fimc_mdev(me); in fimc_pipeline_prepare()
82 for (i = 0; i < me->num_pads; i++) { in fimc_pipeline_prepare()
83 struct media_pad *spad = &me->pads[i]; in fimc_pipeline_prepare()
118 me = &sd->entity; in fimc_pipeline_prepare()
119 if (me->num_pads == 1) in fimc_pipeline_prepare()
198 struct media_entity *me, bool prepare) in __fimc_pipeline_open() argument
200 struct fimc_md *fmd = entity_to_fimc_mdev(me); in __fimc_pipeline_open()
205 if (WARN_ON(p == NULL || me == NULL)) in __fimc_pipeline_open()
209 fimc_pipeline_prepare(p, me); in __fimc_pipeline_open()
Dfimc-capture.c753 static struct media_entity *fimc_pipeline_get_head(struct media_entity *me) in fimc_pipeline_get_head() argument
755 struct media_pad *pad = &me->pads[0]; in fimc_pipeline_get_head()
761 me = pad->entity; in fimc_pipeline_get_head()
762 pad = &me->pads[0]; in fimc_pipeline_get_head()
765 return me; in fimc_pipeline_get_head()
786 struct media_entity *me; in fimc_pipeline_try_format() local
799 me = fimc_pipeline_get_head(&sd->entity); in fimc_pipeline_try_format()
814 while (me != &fimc->vid_cap.subdev.entity) { in fimc_pipeline_try_format()
815 sd = media_entity_to_v4l2_subdev(me); in fimc_pipeline_try_format()
822 if (me->pads[0].flags & MEDIA_PAD_FL_SINK) { in fimc_pipeline_try_format()
[all …]
/linux-4.4.14/arch/openrisc/kernel/
Dmodule.c24 struct module *me) in apply_relocate_add() argument
64 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add()
/linux-4.4.14/arch/cris/kernel/
Dmodule.c49 struct module *me) in apply_relocate_add() argument
76 me->name, ELF32_R_TYPE(rela[i].r_info)); in apply_relocate_add()
/linux-4.4.14/arch/powerpc/kvm/
Dbook3s_hv_builtin.c243 int me, ee, i; in kvmhv_commence_exit() local
247 me = 0x100 << ptid; in kvmhv_commence_exit()
250 } while (cmpxchg(&vc->entry_exit_map, ee, ee | me) != ee); in kvmhv_commence_exit()
/linux-4.4.14/include/media/
Dexynos-fimc.h133 struct media_entity *me);
135 int (*open)(struct exynos_media_pipeline *p, struct media_entity *me,
/linux-4.4.14/arch/um/os-Linux/drivers/
Dtuntap_user.c62 static int tuntap_open_tramp(char *gate, int *fd_out, int me, int remote, in tuntap_open_tramp() argument
78 data.close_me = me; in tuntap_open_tramp()
101 n = recvmsg(me, &msg, 0); in tuntap_open_tramp()
/linux-4.4.14/arch/x86/kernel/apic/
Dvector.c562 unsigned vector, me; in smp_irq_move_cleanup_interrupt() local
569 me = smp_processor_id(); in smp_irq_move_cleanup_interrupt()
596 !cpumask_test_cpu(me, data->old_domain)) in smp_irq_move_cleanup_interrupt()
612 cpumask_test_cpu(me, data->domain)) in smp_irq_move_cleanup_interrupt()
628 cpumask_clear_cpu(me, data->old_domain); in smp_irq_move_cleanup_interrupt()
640 unsigned me; in __irq_complete_move() local
647 me = smp_processor_id(); in __irq_complete_move()
648 if (vector == data->cfg.vector && cpumask_test_cpu(me, data->domain)) in __irq_complete_move()
/linux-4.4.14/arch/c6x/kernel/
Dmodule.c49 struct module *me) in apply_relocate_add() argument
117 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add()
/linux-4.4.14/arch/arm64/kernel/
Dmodule.c210 struct module *me) in apply_relocate_add() argument
395 me->name, ELF64_R_TYPE(rel[i].r_info)); in apply_relocate_add()
408 me->name, (int)ELF64_R_TYPE(rel[i].r_info), val); in apply_relocate_add()
414 struct module *me) in module_finalize() argument
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/fifo/
Dchannv50.c54 u32 me; in nv50_fifo_chan_engine_fini() local
72 me = nvkm_mask(device, 0x00b860, 0x00000001, 0x00000001); in nv50_fifo_chan_engine_fini()
85 nvkm_wr32(device, 0x00b860, me); in nv50_fifo_chan_engine_fini()
/linux-4.4.14/Documentation/filesystems/
Dcoda.txt264 33.. TThhee mmeessssaaggee llaayyeerr
358 33..11.. IImmpplleemmeennttaattiioonn ddeettaaiillss
557 AArrgguummeennttss
584 AArrgguummeennttss
630 AArrgguummeennttss
672 AArrgguummeennttss
704 AArrgguummeennttss
735 AArrgguummeennttss
794 AArrgguummeennttss
836 AArrgguummeennttss
[all …]
/linux-4.4.14/net/ipv6/netfilter/
Dip6t_hbh.c192 .me = THIS_MODULE,
200 .me = THIS_MODULE,
Dip6_tables.c599 module_put(par.match->me); in cleanup_match()
640 module_put(m->u.kernel.match->me); in find_check_match()
712 module_put(t->u.kernel.target->me); in find_check_entry()
814 module_put(par.target->me); in cleanup_entry()
1147 module_put(t->me); in get_info()
1189 module_put(t->me); in get_entries()
1239 module_put(t->me); in __do_replace()
1242 module_put(t->me); in __do_replace()
1262 module_put(t->me); in __do_replace()
1363 module_put(t->me); in do_add_counters()
[all …]
Dip6t_NPT.c119 .me = THIS_MODULE,
130 .me = THIS_MODULE,
Dip6t_MASQUERADE.c47 .me = THIS_MODULE,
Dip6t_eui64.c60 .me = THIS_MODULE,
Dip6t_mh.c80 .me = THIS_MODULE,
Dip6table_raw.c15 .me = THIS_MODULE,
Dip6table_security.c33 .me = THIS_MODULE,
Dip6table_filter.c28 .me = THIS_MODULE,
Dip6t_REJECT.c106 .me = THIS_MODULE
Dip6t_ipv6header.c139 .me = THIS_MODULE,
Dip6t_ah.c107 .me = THIS_MODULE,
Dip6table_nat.c29 .me = THIS_MODULE,
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/
Dcik.h30 u32 me, u32 pipe, u32 queue, u32 vmid);
Dvi.h30 u32 me, u32 pipe, u32 queue, u32 vmid);
/linux-4.4.14/drivers/tty/
Dmxser.c1550 struct mxser_mon_ext *me; /* it's 2k, stack unfriendly */ in mxser_ioctl_special() local
1554 me = kzalloc(sizeof(*me), GFP_KERNEL); in mxser_ioctl_special()
1555 if (!me) in mxser_ioctl_special()
1560 if (p >= ARRAY_SIZE(me->rx_cnt)) { in mxser_ioctl_special()
1586 me->rx_cnt[p] = ip->mon_data.rxcnt; in mxser_ioctl_special()
1587 me->tx_cnt[p] = ip->mon_data.txcnt; in mxser_ioctl_special()
1588 me->up_rxcnt[p] = ip->mon_data.up_rxcnt; in mxser_ioctl_special()
1589 me->up_txcnt[p] = ip->mon_data.up_txcnt; in mxser_ioctl_special()
1590 me->modem_status[p] = in mxser_ioctl_special()
1599 me->baudrate[p] = tty_termios_baud_rate(&ip->normal_termios); in mxser_ioctl_special()
[all …]
/linux-4.4.14/arch/powerpc/lib/
Dsstep.c623 #define MASK32(mb, me) ((0xffffffffUL >> (mb)) + \ argument
624 ((signed long)-0x80000000L >> (me)) + ((me) >= (mb)))
627 #define MASK64_R(me) ((signed long)-0x8000000000000000L >> (me)) argument
628 #define MASK64(mb, me) (MASK64_L(mb) + MASK64_R(me) + ((me) >= (mb))) argument
648 unsigned int mb, me, sh; in analyse_instr() local
839 me = (instr >> 1) & 0x1f; in analyse_instr()
841 imm = MASK32(mb, me); in analyse_instr()
847 me = (instr >> 1) & 0x1f; in analyse_instr()
849 regs->gpr[ra] = ROTATE(val, rb) & MASK32(mb, me); in analyse_instr()
854 me = (instr >> 1) & 0x1f; in analyse_instr()
[all …]
/linux-4.4.14/net/ipv4/netfilter/
Dip_tables.c587 module_put(par.match->me); in cleanup_match()
628 module_put(m->u.kernel.match->me); in find_check_match()
700 module_put(t->u.kernel.target->me); in find_check_entry()
803 module_put(par.target->me); in cleanup_entry()
1135 module_put(t->me); in get_info()
1177 module_put(t->me); in get_entries()
1227 module_put(t->me); in __do_replace()
1230 module_put(t->me); in __do_replace()
1250 module_put(t->me); in __do_replace()
1352 module_put(t->me); in do_add_counters()
[all …]
Darp_tables.c545 module_put(t->u.kernel.target->me); in find_check_entry()
634 module_put(par.target->me); in cleanup_entry()
949 module_put(t->me); in get_info()
992 module_put(t->me); in get_entries()
1044 module_put(t->me); in __do_replace()
1047 module_put(t->me); in __do_replace()
1068 module_put(t->me); in __do_replace()
1170 module_put(t->me); in do_add_counters()
1195 module_put(t->u.kernel.target->me); in compat_release_entry()
1256 module_put(t->u.kernel.target->me); in check_compat_entry_size_and_hooks()
[all …]
Dipt_MASQUERADE.c69 .me = THIS_MODULE,
Darptable_filter.c23 .me = THIS_MODULE,
Dipt_ah.c77 .me = THIS_MODULE,
Diptable_security.c34 .me = THIS_MODULE,
Diptable_raw.c16 .me = THIS_MODULE,
Diptable_filter.c30 .me = THIS_MODULE,
Dipt_REJECT.c99 .me = THIS_MODULE,
Darpt_mangle.c77 .me = THIS_MODULE,
Diptable_nat.c27 .me = THIS_MODULE,
/linux-4.4.14/arch/tile/include/arch/
Dmpipe_shm.h222 uint_reg_t me : 1; member
330 uint_reg_t me : 1;
/linux-4.4.14/Documentation/isdn/
DREADME.pcbit26 *do* send me a mail.
35 mailing list (isdn4linux@listserv.isdn4linux.de) or directly from me.
/linux-4.4.14/drivers/tty/ipwireless/
Dmain.c306 static struct pcmcia_driver me = { variable
326 ret = pcmcia_register_driver(&me); in init_ipwireless()
338 pcmcia_unregister_driver(&me); in exit_ipwireless()
/linux-4.4.14/arch/alpha/lib/
Ddbg_stackcheck.S24 1: stq $31, -8($31) # oops me, damn it.
/linux-4.4.14/include/linux/netfilter/
Dx_tables.h134 struct module *me; member
174 struct module *me; member
198 struct module *me; member
/linux-4.4.14/Documentation/video4linux/bttv/
DREADME.freeze8 Just mailing me "bttv freezes" isn't going to help much. This README
21 console and let some terminal application log the messages. /me uses
36 0.7.x. I have no idea where exactly, it works stable for me and a lot of
DREADME61 reproduce your problems. This makes debugging very difficult for me.
70 instead of mailing me directly. The chance that someone with the
82 linux-kernel/Alan/Linus/...), please Cc: me.
DCONTRIBUTORS20 + many more (please mail me if you are missing in this list and would
DTHANKS22 Also many thanks for faxing me the FM1216 data sheet.
DICs36 if you want better support for STB cards send me info!
/linux-4.4.14/sound/oss/
Dopl3.c1113 int me; in opl3_init() local
1121 if ((me = sound_alloc_synthdev()) == -1) in opl3_init()
1151 synth_devs[me] = &opl3_operations; in opl3_init()
1154 synth_devs[me]->owner = owner; in opl3_init()
1196 return me; in opl3_init()
1199 static int me; variable
1216 me = opl3_init(io, THIS_MODULE); in init_opl3()
1233 sound_unload_synthdev(me); in cleanup_opl3()
/linux-4.4.14/fs/qnx6/
DREADME7 Al Viro <viro@ZenIV.linux.org.uk> (endless patience with me & support ;))
/linux-4.4.14/Documentation/networking/
Darcnet.txt7 Since no one seems to listen to me otherwise, perhaps a poem will get your
13 lines. Hey, I'm in Computer Science, not English. Give me a break.
19 nice, but after that even FEWER people started writing to me because they
22 Come on, be a sport! Send me a success report!
31 If you don't e-mail me about your success/failure soon, I may be forced to
35 If you think so, why not flame me in a quick little e-mail? Please also
55 The previous release resulted from many months of on-and-off effort from me
257 don't know why the defaults on the Amiga didn't work; write to me if
292 "normal" Warp Bonus Pack, let me know.
296 installing it under Warp, however. Please mail me with any results.
[all …]
Dsmc9.txt40 Contacting me:
/linux-4.4.14/Documentation/video4linux/
DREADME.saa713440 Please mail me unified diffs ("diff -u") with your changes, and don't
41 forget to tell me what it changes / which problem it fixes / whatever
DREADME.cx8850 cx88-cards.c. If that worked, mail me your changes as unified
52 (3) Or you can mail me the config information. I need at least the
/linux-4.4.14/fs/reiserfs/
DREADME31 it wrongly, and Richard Stallman agrees with me, when carefully read
37 fail to fairly credit me, or to remove my credits, without my
106 tried to put me in a position where I was forced into giving control
115 loss for me. Mikhail Gilula was a brilliant innovator who also left
141 the time to convince me we should do it also. They are great people,
153 Alpha PC Company made it possible for me to not have a day job
/linux-4.4.14/drivers/media/platform/omap3isp/
Disp.c1120 static int isp_pipeline_is_last(struct media_entity *me) in isp_pipeline_is_last() argument
1125 if (!me->pipe) in isp_pipeline_is_last()
1127 pipe = to_isp_pipeline(me); in isp_pipeline_is_last()
1131 return pad->entity == me; in isp_pipeline_is_last()
1142 static void isp_suspend_module_pipeline(struct media_entity *me) in isp_suspend_module_pipeline() argument
1144 if (isp_pipeline_is_last(me)) in isp_suspend_module_pipeline()
1145 isp_pipeline_suspend(to_isp_pipeline(me)); in isp_suspend_module_pipeline()
1156 static void isp_resume_module_pipeline(struct media_entity *me) in isp_resume_module_pipeline() argument
1158 if (isp_pipeline_is_last(me)) in isp_resume_module_pipeline()
1159 isp_pipeline_resume(to_isp_pipeline(me)); in isp_resume_module_pipeline()
[all …]
/linux-4.4.14/net/bridge/netfilter/
Debt_pkttype.c40 .me = THIS_MODULE,
Debt_dnat.c58 .me = THIS_MODULE,
Debt_nflog.c56 .me = THIS_MODULE,
Debt_redirect.c64 .me = THIS_MODULE,
Debt_802_3.c56 .me = THIS_MODULE,
Dnf_log_bridge.c48 .me = THIS_MODULE,
Debtable_broute.c48 .me = THIS_MODULE,
Debt_snat.c71 .me = THIS_MODULE,
Debtables.c383 module_put(match->me); in ebt_check_match()
414 module_put(watcher->me); in ebt_check_watcher()
603 module_put(par.match->me); in ebt_cleanup_match()
621 module_put(par.target->me); in ebt_cleanup_watcher()
646 module_put(par.target->me); in ebt_cleanup_entry()
739 module_put(t->u.target->me); in ebt_check_entry()
749 module_put(target->me); in ebt_check_entry()
1026 if (!table->nentries && newinfo->nentries && !try_module_get(t->me)) { in do_replace_finish()
1030 module_put(t->me); in do_replace_finish()
1230 if (newinfo->nentries && !try_module_get(table->me)) { in ebt_register_table()
[all …]
Debt_arpreply.c82 .me = THIS_MODULE,
Debt_mark.c94 .me = THIS_MODULE,
Debt_mark_m.c82 .me = THIS_MODULE,
Debtable_nat.c56 .me = THIS_MODULE,
Debtable_filter.c56 .me = THIS_MODULE,
Debt_vlan.c165 .me = THIS_MODULE,
/linux-4.4.14/Documentation/spi/
Dep93xx_spi103 Martin Guy, H. Hartley Sweeten and others who helped me during development of
104 the driver. Simplemachines.it donated me a Sim.One board which I used testing
/linux-4.4.14/Documentation/input/
Dcd32.txt1 I have written a small patch that let's me use my Amiga CD32
/linux-4.4.14/drivers/staging/media/omap4iss/
Diss.c737 static int iss_pipeline_is_last(struct media_entity *me) in iss_pipeline_is_last() argument
742 if (!me->pipe) in iss_pipeline_is_last()
744 pipe = to_iss_pipeline(me); in iss_pipeline_is_last()
748 return pad->entity == me; in iss_pipeline_is_last()
813 int omap4iss_module_sync_idle(struct media_entity *me, wait_queue_head_t *wait, in omap4iss_module_sync_idle() argument
816 struct iss_pipeline *pipe = to_iss_pipeline(me); in omap4iss_module_sync_idle()
841 if (!iss_pipeline_is_last(me)) in omap4iss_module_sync_idle()
Diss_ipipe.c500 struct media_entity *me = &sd->entity; in ipipe_init_entities() local
515 me->ops = &ipipe_media_ops; in ipipe_init_entities()
516 ret = media_entity_init(me, IPIPE_PADS_NUM, pads, 0); in ipipe_init_entities()
/linux-4.4.14/arch/mips/math-emu/
DMakefile16 obj-$(CONFIG_DEBUG_FS) += me-debugfs.o
/linux-4.4.14/include/net/netfilter/
Dnf_conntrack_l3proto.h74 struct module *me; member
Dnf_conntrack_expect.h107 struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me);
Dnf_conntrack_helper.h29 struct module *me; /* pointer to self */ member
/linux-4.4.14/arch/m68k/hp300/
DREADME.hp30010 combination seems to work for me. Your mileage may vary.
/linux-4.4.14/drivers/staging/rdma/ehca/
Dehca_mrmw.c120 struct ehca_mr *me; in ehca_mr_new() local
122 me = kmem_cache_zalloc(mr_cache, GFP_KERNEL); in ehca_mr_new()
123 if (me) in ehca_mr_new()
124 spin_lock_init(&me->mrlock); in ehca_mr_new()
128 return me; in ehca_mr_new()
131 static void ehca_mr_delete(struct ehca_mr *me) in ehca_mr_delete() argument
133 kmem_cache_free(mr_cache, me); in ehca_mr_delete()
138 struct ehca_mw *me; in ehca_mw_new() local
140 me = kmem_cache_zalloc(mw_cache, GFP_KERNEL); in ehca_mw_new()
141 if (me) in ehca_mw_new()
[all …]
/linux-4.4.14/Documentation/fb/
Dsstfb.txt8 and with me "between chair and keyboard". Some people tested other
16 Please read the Bug section, and report any success or failure to me
34 drop me a report :)
151 contact me.
/linux-4.4.14/tools/testing/selftests/seccomp/
Dseccomp_bpf.c1703 struct tsync_sibling *me = data; in tsync_sibling() local
1705 me->system_tid = syscall(__NR_gettid); in tsync_sibling()
1707 pthread_mutex_lock(me->mutex); in tsync_sibling()
1708 if (me->diverge) { in tsync_sibling()
1711 me->prog, 0, 0); in tsync_sibling()
1713 sem_post(me->started); in tsync_sibling()
1716 pthread_mutex_unlock(me->mutex); in tsync_sibling()
1720 pthread_cond_wait(me->cond, me->mutex); in tsync_sibling()
1721 me->num_waits = me->num_waits - 1; in tsync_sibling()
1722 } while (me->num_waits); in tsync_sibling()
[all …]
/linux-4.4.14/arch/x86/kernel/cpu/
Dcommon.c1327 struct task_struct *me; in cpu_init() local
1356 me = current; in cpu_init()
1372 memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8); in cpu_init()
1407 me->active_mm = &init_mm; in cpu_init()
1408 BUG_ON(me->mm); in cpu_init()
1409 enter_lazy_tlb(&init_mm, me); in cpu_init()
/linux-4.4.14/arch/powerpc/include/asm/
Dppc-pci.h36 typedef void *(*traverse_func)(struct device_node *me, void *data);
/linux-4.4.14/arch/ia64/kernel/
Dirq_ia64.c322 int me = smp_processor_id(); in smp_irq_move_cleanup_interrupt() local
341 if (!cpumask_test_cpu(me, &cfg->old_domain)) in smp_irq_move_cleanup_interrupt()
346 cpumask_clear_cpu(me, &vector_table[vector]); in smp_irq_move_cleanup_interrupt()
/linux-4.4.14/arch/x86/include/asm/
Dpvclock.h56 #error implement me! in pvclock_scale_delta()
/linux-4.4.14/Documentation/hwmon/
Dsch562727 request. Please mail me if you want a copy.
/linux-4.4.14/arch/m68k/mvme147/
Dconfig.c153 #warning check me! in mvme147_hwclk()
/linux-4.4.14/arch/nios2/kernel/
Dmodule.c134 struct module *me) in module_finalize() argument
/linux-4.4.14/Documentation/powerpc/
D00-INDEX3 please mail me.

123