/linux-4.4.14/drivers/staging/lustre/lnet/lnet/ |
D | lib-me.c | 83 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 …]
|
D | lib-ptl.c | 146 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 …]
|
D | lib-md.c | 51 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()
|
D | Makefile | 4 lib-me.o lib-msg.o lib-eq.o lib-md.o lib-ptl.o \
|
/linux-4.4.14/arch/parisc/kernel/ |
D | module.c | 84 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/ |
D | module.c | 58 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/ |
D | module.c | 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() [all …]
|
D | module-rela.c | 26 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 …]
|
D | vpe.c | 228 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/ |
D | mei-amt-version.c | 111 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/ |
D | module_64.c | 364 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 …]
|
D | module_32.c | 149 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()
|
D | module.c | 47 const Elf_Shdr *sechdrs, struct module *me) in module_finalize() argument
|
/linux-4.4.14/net/netfilter/ |
D | nf_conntrack_helper.c | 163 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 …]
|
D | xt_tcpudp.c | 174 .me = THIS_MODULE, 183 .me = THIS_MODULE, 192 .me = THIS_MODULE, 201 .me = THIS_MODULE, 210 .me = THIS_MODULE, 219 .me = THIS_MODULE,
|
D | xt_dscp.c | 76 .me = THIS_MODULE, 84 .me = THIS_MODULE, 92 .me = THIS_MODULE, 100 .me = THIS_MODULE,
|
D | xt_NFQUEUE.c | 118 .me = THIS_MODULE, 127 .me = THIS_MODULE, 136 .me = THIS_MODULE, 145 .me = THIS_MODULE,
|
D | xt_set.c | 563 .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 …]
|
D | xt_DSCP.c | 124 .me = THIS_MODULE, 133 .me = THIS_MODULE, 142 .me = THIS_MODULE, 151 .me = THIS_MODULE,
|
D | xt_nat.c | 115 .me = THIS_MODULE, 127 .me = THIS_MODULE, 137 .me = THIS_MODULE, 147 .me = THIS_MODULE,
|
D | xt_CLASSIFY.c | 49 .me = THIS_MODULE, 58 .me = THIS_MODULE,
|
D | xt_socket.c | 464 .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,
|
D | xt_length.c | 48 .me = THIS_MODULE, 55 .me = THIS_MODULE,
|
D | xt_mark.c | 51 .me = THIS_MODULE, 60 .me = THIS_MODULE,
|
D | xt_CT.c | 99 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,
|
D | xt_hl.c | 73 .me = THIS_MODULE, 81 .me = THIS_MODULE,
|
D | xt_REDIRECT.c | 79 .me = THIS_MODULE, 91 .me = THIS_MODULE,
|
D | xt_ipcomp.c | 87 .me = THIS_MODULE, 96 .me = THIS_MODULE,
|
D | xt_esp.c | 83 .me = THIS_MODULE, 92 .me = THIS_MODULE,
|
D | xt_LOG.c | 80 .me = THIS_MODULE, 90 .me = THIS_MODULE,
|
D | xt_tcpmss.c | 87 .me = THIS_MODULE, 95 .me = THIS_MODULE,
|
D | xt_HL.c | 142 .me = THIS_MODULE, 152 .me = THIS_MODULE,
|
D | xt_TCPOPTSTRIP.c | 125 .me = THIS_MODULE, 135 .me = THIS_MODULE,
|
D | xt_connmark.c | 130 .me = THIS_MODULE, 141 .me = THIS_MODULE,
|
D | xt_ecn.c | 156 .me = THIS_MODULE, 164 .me = THIS_MODULE,
|
D | xt_TEE.c | 132 .me = THIS_MODULE, 143 .me = THIS_MODULE,
|
D | xt_multiport.c | 140 .me = THIS_MODULE, 149 .me = THIS_MODULE,
|
D | xt_iprange.c | 111 .me = THIS_MODULE, 119 .me = THIS_MODULE,
|
D | nf_conntrack_proto.c | 87 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()
|
D | xt_dccp.c | 148 .me = THIS_MODULE, 157 .me = THIS_MODULE,
|
D | xt_comment.c | 31 .me = THIS_MODULE,
|
D | xt_TRACE.c | 26 .me = THIS_MODULE,
|
D | xt_sctp.c | 174 .me = THIS_MODULE 183 .me = THIS_MODULE
|
D | xt_NETMAP.c | 130 .me = THIS_MODULE, 144 .me = THIS_MODULE,
|
D | xt_conntrack.c | 297 .me = THIS_MODULE, 307 .me = THIS_MODULE, 317 .me = THIS_MODULE,
|
D | xt_realm.c | 40 .me = THIS_MODULE
|
D | xt_cpu.c | 51 .me = THIS_MODULE,
|
D | xt_AUDIT.c | 208 .me = THIS_MODULE, 216 .me = THIS_MODULE,
|
D | xt_policy.c | 163 .me = THIS_MODULE, 171 .me = THIS_MODULE,
|
D | xt_CHECKSUM.c | 56 .me = THIS_MODULE,
|
D | nf_conntrack_netbios_ns.c | 54 .me = THIS_MODULE,
|
D | xt_mac.c | 52 .me = THIS_MODULE,
|
D | xt_cgroup.c | 55 .me = THIS_MODULE,
|
D | xt_pkttype.c | 51 .me = THIS_MODULE,
|
D | nf_conntrack_amanda.c | 178 .me = THIS_MODULE, 187 .me = THIS_MODULE,
|
D | nft_compat.c | 245 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()
|
D | xt_state.c | 65 .me = THIS_MODULE,
|
D | xt_bpf.c | 60 .me = THIS_MODULE,
|
D | xt_nfacct.c | 65 .me = THIS_MODULE,
|
D | xt_addrtype.c | 223 .me = THIS_MODULE 232 .me = THIS_MODULE
|
D | xt_devgroup.c | 68 .me = THIS_MODULE
|
D | nf_conntrack_snmp.c | 61 .me = THIS_MODULE,
|
D | xt_NFLOG.c | 59 .me = THIS_MODULE,
|
D | xt_helper.c | 85 .me = THIS_MODULE,
|
D | xt_quota.c | 76 .me = THIS_MODULE,
|
D | xt_connlabel.c | 77 .me = THIS_MODULE,
|
D | xt_l2tp.c | 324 .me = THIS_MODULE, 338 .me = THIS_MODULE,
|
D | xt_statistic.c | 87 .me = THIS_MODULE,
|
D | xt_string.c | 80 .me = THIS_MODULE,
|
D | xt_CONNSECMARK.c | 129 .me = THIS_MODULE,
|
D | xt_owner.c | 83 .me = THIS_MODULE,
|
D | xt_SECMARK.c | 133 .me = THIS_MODULE,
|
D | xt_u32.c | 104 .me = THIS_MODULE,
|
D | xt_TCPMSS.c | 324 .me = THIS_MODULE, 334 .me = THIS_MODULE,
|
D | xt_TPROXY.c | 553 .me = THIS_MODULE, 564 .me = THIS_MODULE, 576 .me = THIS_MODULE,
|
/linux-4.4.14/arch/metag/kernel/ |
D | module.c | 135 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/ |
D | util.c | 90 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/ |
D | module.c | 77 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/ |
D | Makefile | 17 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/ |
D | module.c | 103 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()
|
D | process_64.c | 161 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()
|
D | process.c | 99 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/ |
D | module.c | 96 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/ |
D | moduleloader.h | 46 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/ |
D | udev-install.sh | 5 me="`basename $0`" 16 echo "$me Error: no udev.conf found" 1>&2 30 echo "$me Error: cannot find udev rules directory" 1>&2
|
D | status.sh | 9 me=`basename $0` 17 echo "$me Error: sysfs is not mounted" 1>&2
|
/linux-4.4.14/arch/m32r/kernel/ |
D | module.c | 75 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/ |
D | extract-vmlinux | 39 me=${0##*/} 43 echo "Usage: $me <kernel-image>" >&2 62 echo "$me: Cannot find vmlinux." >&2
|
D | extract-ikconfig | 42 me=${0##*/} 46 echo "Usage: $me <kernel-image>" >&2 67 echo "$me: Cannot find kernel config." >&2
|
/linux-4.4.14/arch/sh/kernel/ |
D | module.c | 41 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()
|
D | dwarf.c | 1094 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/ |
D | leon_smp.c | 112 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()
|
D | module.c | 86 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()
|
D | itlb_miss.S | 17 nop ! Delay slot, fill me
|
/linux-4.4.14/drivers/gpu/drm/omapdrm/ |
D | tcm-sita.c | 606 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/ |
D | module.c | 60 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/ |
D | module.c | 32 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/ |
D | module.c | 26 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/ |
D | ebtables.h | 37 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/ |
D | kernel-locking.xml.db | 19 API-queue-me 20 API-unqueue-me 22 API-futex-wait-queue-me
|
/linux-4.4.14/arch/h8300/kernel/ |
D | module.c | 12 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/ |
D | lib-lnet.h | 223 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/ |
D | ioctl.c | 411 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/ |
D | sys.c | 2064 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 …]
|
D | pid_namespace.c | 188 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/ |
D | media-dev.h | 165 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()
|
D | fimc-isp-video.c | 278 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()
|
D | media-dev.c | 68 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()
|
D | fimc-capture.c | 753 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/ |
D | module.c | 24 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/ |
D | module.c | 49 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/ |
D | book3s_hv_builtin.c | 243 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/ |
D | exynos-fimc.h | 133 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/ |
D | tuntap_user.c | 62 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/ |
D | vector.c | 562 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/ |
D | module.c | 49 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/ |
D | module.c | 210 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/ |
D | channv50.c | 54 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/ |
D | coda.txt | 264 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/ |
D | ip6t_hbh.c | 192 .me = THIS_MODULE, 200 .me = THIS_MODULE,
|
D | ip6_tables.c | 599 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 …]
|
D | ip6t_NPT.c | 119 .me = THIS_MODULE, 130 .me = THIS_MODULE,
|
D | ip6t_MASQUERADE.c | 47 .me = THIS_MODULE,
|
D | ip6t_eui64.c | 60 .me = THIS_MODULE,
|
D | ip6t_mh.c | 80 .me = THIS_MODULE,
|
D | ip6table_raw.c | 15 .me = THIS_MODULE,
|
D | ip6table_security.c | 33 .me = THIS_MODULE,
|
D | ip6table_filter.c | 28 .me = THIS_MODULE,
|
D | ip6t_REJECT.c | 106 .me = THIS_MODULE
|
D | ip6t_ipv6header.c | 139 .me = THIS_MODULE,
|
D | ip6t_ah.c | 107 .me = THIS_MODULE,
|
D | ip6table_nat.c | 29 .me = THIS_MODULE,
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | cik.h | 30 u32 me, u32 pipe, u32 queue, u32 vmid);
|
D | vi.h | 30 u32 me, u32 pipe, u32 queue, u32 vmid);
|
/linux-4.4.14/drivers/tty/ |
D | mxser.c | 1550 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/ |
D | sstep.c | 623 #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/ |
D | ip_tables.c | 587 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 …]
|
D | arp_tables.c | 545 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 …]
|
D | ipt_MASQUERADE.c | 69 .me = THIS_MODULE,
|
D | arptable_filter.c | 23 .me = THIS_MODULE,
|
D | ipt_ah.c | 77 .me = THIS_MODULE,
|
D | iptable_security.c | 34 .me = THIS_MODULE,
|
D | iptable_raw.c | 16 .me = THIS_MODULE,
|
D | iptable_filter.c | 30 .me = THIS_MODULE,
|
D | ipt_REJECT.c | 99 .me = THIS_MODULE,
|
D | arpt_mangle.c | 77 .me = THIS_MODULE,
|
D | iptable_nat.c | 27 .me = THIS_MODULE,
|
/linux-4.4.14/arch/tile/include/arch/ |
D | mpipe_shm.h | 222 uint_reg_t me : 1; member 330 uint_reg_t me : 1;
|
/linux-4.4.14/Documentation/isdn/ |
D | README.pcbit | 26 *do* send me a mail. 35 mailing list (isdn4linux@listserv.isdn4linux.de) or directly from me.
|
/linux-4.4.14/drivers/tty/ipwireless/ |
D | main.c | 306 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/ |
D | dbg_stackcheck.S | 24 1: stq $31, -8($31) # oops me, damn it.
|
/linux-4.4.14/include/linux/netfilter/ |
D | x_tables.h | 134 struct module *me; member 174 struct module *me; member 198 struct module *me; member
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | README.freeze | 8 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
|
D | README | 61 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.
|
D | CONTRIBUTORS | 20 + many more (please mail me if you are missing in this list and would
|
D | THANKS | 22 Also many thanks for faxing me the FM1216 data sheet.
|
D | ICs | 36 if you want better support for STB cards send me info!
|
/linux-4.4.14/sound/oss/ |
D | opl3.c | 1113 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/ |
D | README | 7 Al Viro <viro@ZenIV.linux.org.uk> (endless patience with me & support ;))
|
/linux-4.4.14/Documentation/networking/ |
D | arcnet.txt | 7 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 …]
|
D | smc9.txt | 40 Contacting me:
|
/linux-4.4.14/Documentation/video4linux/ |
D | README.saa7134 | 40 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
|
D | README.cx88 | 50 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/ |
D | README | 31 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/ |
D | isp.c | 1120 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/ |
D | ebt_pkttype.c | 40 .me = THIS_MODULE,
|
D | ebt_dnat.c | 58 .me = THIS_MODULE,
|
D | ebt_nflog.c | 56 .me = THIS_MODULE,
|
D | ebt_redirect.c | 64 .me = THIS_MODULE,
|
D | ebt_802_3.c | 56 .me = THIS_MODULE,
|
D | nf_log_bridge.c | 48 .me = THIS_MODULE,
|
D | ebtable_broute.c | 48 .me = THIS_MODULE,
|
D | ebt_snat.c | 71 .me = THIS_MODULE,
|
D | ebtables.c | 383 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 …]
|
D | ebt_arpreply.c | 82 .me = THIS_MODULE,
|
D | ebt_mark.c | 94 .me = THIS_MODULE,
|
D | ebt_mark_m.c | 82 .me = THIS_MODULE,
|
D | ebtable_nat.c | 56 .me = THIS_MODULE,
|
D | ebtable_filter.c | 56 .me = THIS_MODULE,
|
D | ebt_vlan.c | 165 .me = THIS_MODULE,
|
/linux-4.4.14/Documentation/spi/ |
D | ep93xx_spi | 103 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/ |
D | cd32.txt | 1 I have written a small patch that let's me use my Amiga CD32
|
/linux-4.4.14/drivers/staging/media/omap4iss/ |
D | iss.c | 737 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()
|
D | iss_ipipe.c | 500 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/ |
D | Makefile | 16 obj-$(CONFIG_DEBUG_FS) += me-debugfs.o
|
/linux-4.4.14/include/net/netfilter/ |
D | nf_conntrack_l3proto.h | 74 struct module *me; member
|
D | nf_conntrack_expect.h | 107 struct nf_conntrack_expect *nf_ct_expect_alloc(struct nf_conn *me);
|
D | nf_conntrack_helper.h | 29 struct module *me; /* pointer to self */ member
|
/linux-4.4.14/arch/m68k/hp300/ |
D | README.hp300 | 10 combination seems to work for me. Your mileage may vary.
|
/linux-4.4.14/drivers/staging/rdma/ehca/ |
D | ehca_mrmw.c | 120 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/ |
D | sstfb.txt | 8 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/ |
D | seccomp_bpf.c | 1703 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/ |
D | common.c | 1327 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/ |
D | ppc-pci.h | 36 typedef void *(*traverse_func)(struct device_node *me, void *data);
|
/linux-4.4.14/arch/ia64/kernel/ |
D | irq_ia64.c | 322 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/ |
D | pvclock.h | 56 #error implement me! in pvclock_scale_delta()
|
/linux-4.4.14/Documentation/hwmon/ |
D | sch5627 | 27 request. Please mail me if you want a copy.
|
/linux-4.4.14/arch/m68k/mvme147/ |
D | config.c | 153 #warning check me! in mvme147_hwclk()
|
/linux-4.4.14/arch/nios2/kernel/ |
D | module.c | 134 struct module *me) in module_finalize() argument
|
/linux-4.4.14/Documentation/powerpc/ |
D | 00-INDEX | 3 please mail me.
|