/linux-4.1.27/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 | 3 lnet-y := api-ni.o config.o lib-me.o lib-msg.o lib-eq.o \
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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 | 558 .me = THIS_MODULE 568 .me = THIS_MODULE 578 .me = THIS_MODULE 589 .me = THIS_MODULE 599 .me = THIS_MODULE 610 .me = THIS_MODULE 620 .me = THIS_MODULE 631 .me = THIS_MODULE 641 .me = THIS_MODULE 654 .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_CT.c | 99 module_put(helper->me); in xt_ct_set_helper() 316 module_put(help->helper->me); in xt_ct_tg_destroy() 354 .me = THIS_MODULE, 365 .me = THIS_MODULE, 376 .me = THIS_MODULE, 411 .me = THIS_MODULE,
|
D | xt_length.c | 48 .me = THIS_MODULE, 55 .me = THIS_MODULE,
|
D | xt_mark.c | 50 .me = THIS_MODULE, 59 .me = THIS_MODULE,
|
D | xt_REDIRECT.c | 79 .me = THIS_MODULE, 91 .me = THIS_MODULE,
|
D | xt_hl.c | 73 .me = THIS_MODULE, 81 .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_tcpmss.c | 87 .me = THIS_MODULE, 95 .me = THIS_MODULE,
|
D | xt_LOG.c | 80 .me = THIS_MODULE, 90 .me = THIS_MODULE,
|
D | xt_socket.c | 439 .me = THIS_MODULE, 450 .me = THIS_MODULE, 462 .me = THIS_MODULE, 474 .me = THIS_MODULE, 486 .me = THIS_MODULE,
|
D | xt_HL.c | 142 .me = THIS_MODULE, 152 .me = THIS_MODULE,
|
D | xt_connmark.c | 130 .me = THIS_MODULE, 141 .me = THIS_MODULE,
|
D | xt_TCPOPTSTRIP.c | 125 .me = THIS_MODULE, 135 .me = THIS_MODULE,
|
D | xt_ecn.c | 156 .me = THIS_MODULE, 164 .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_policy.c | 163 .me = THIS_MODULE, 171 .me = THIS_MODULE,
|
D | xt_AUDIT.c | 208 .me = THIS_MODULE, 216 .me = THIS_MODULE,
|
D | xt_CHECKSUM.c | 56 .me = THIS_MODULE,
|
D | xt_mac.c | 52 .me = THIS_MODULE,
|
D | xt_cgroup.c | 55 .me = THIS_MODULE,
|
D | nf_conntrack_netbios_ns.c | 54 .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 | 244 module_put(target->me); in nft_target_init() 262 module_put(target->me); in nft_target_destroy() 425 module_put(match->me); in nft_match_init() 443 module_put(match->me); in nft_match_destroy() 650 if (!try_module_get(match->me)) in nft_match_select_ops() 730 if (!try_module_get(target->me)) in nft_target_select_ops()
|
D | xt_bpf.c | 60 .me = THIS_MODULE,
|
D | xt_state.c | 65 .me = THIS_MODULE,
|
D | xt_nfacct.c | 65 .me = THIS_MODULE,
|
D | nf_conntrack_snmp.c | 61 .me = THIS_MODULE,
|
D | xt_devgroup.c | 68 .me = THIS_MODULE
|
D | xt_NFLOG.c | 59 .me = THIS_MODULE,
|
D | xt_addrtype.c | 223 .me = THIS_MODULE 232 .me = THIS_MODULE
|
D | xt_quota.c | 76 .me = THIS_MODULE,
|
D | xt_helper.c | 85 .me = THIS_MODULE,
|
D | xt_l2tp.c | 324 .me = THIS_MODULE, 338 .me = THIS_MODULE,
|
D | xt_TEE.c | 276 .me = THIS_MODULE, 287 .me = THIS_MODULE,
|
D | xt_string.c | 80 .me = THIS_MODULE,
|
D | xt_statistic.c | 87 .me = THIS_MODULE,
|
D | xt_CONNSECMARK.c | 129 .me = THIS_MODULE,
|
D | xt_connlabel.c | 85 .me = THIS_MODULE,
|
D | xt_owner.c | 81 .me = THIS_MODULE,
|
D | xt_SECMARK.c | 133 .me = THIS_MODULE,
|
D | xt_u32.c | 104 .me = THIS_MODULE,
|
D | xt_TCPMSS.c | 318 .me = THIS_MODULE, 328 .me = THIS_MODULE,
|
D | xt_TPROXY.c | 555 .me = THIS_MODULE, 566 .me = THIS_MODULE, 578 .me = THIS_MODULE,
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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 | i387.c | 91 struct task_struct *me = current; in __kernel_fpu_begin() local 95 if (__thread_has_fpu(me)) { in __kernel_fpu_begin() 96 __save_init_fpu(me); in __kernel_fpu_begin() 107 struct task_struct *me = current; in __kernel_fpu_end() local 109 if (__thread_has_fpu(me)) { in __kernel_fpu_end() 110 if (WARN_ON(restore_fpu_checking(me))) in __kernel_fpu_end() 111 fpu_reset_state(me); in __kernel_fpu_end()
|
D | process_64.c | 160 struct task_struct *me = current; in copy_thread() local 169 p->thread.gs = p->thread.gsindex ? 0 : me->thread.gs; in copy_thread() 171 p->thread.fs = p->thread.fsindex ? 0 : me->thread.fs; in copy_thread() 195 if (unlikely(test_tsk_thread_flag(me, TIF_IO_BITMAP))) { in copy_thread() 196 p->thread.io_bitmap_ptr = kmemdup(me->thread.io_bitmap_ptr, in copy_thread()
|
D | process.c | 127 struct task_struct *me = current; in exit_thread() local 128 struct thread_struct *t = &me->thread; in exit_thread() 145 drop_fpu(me); in exit_thread()
|
D | signal.c | 748 struct task_struct *me = current; in signal_fault() local 754 me->comm, me->pid, where, frame, in signal_fault() 760 force_sig(SIGSEGV, me); in signal_fault()
|
/linux-4.1.27/drivers/staging/lustre/include/linux/lnet/ |
D | lib-lnet.h | 291 lnet_me_t *me; in lnet_me_alloc() local 296 me = (lnet_me_t *)lnet_freelist_alloc(&rec->rec_freelist); in lnet_me_alloc() 299 return me; in lnet_me_alloc() 303 lnet_me_free_locked(lnet_me_t *me) in lnet_me_free_locked() argument 309 lnet_freelist_free(&rec->rec_freelist, me); in lnet_me_free_locked() 313 lnet_me_free(lnet_me_t *me) in lnet_me_free() argument 316 lnet_me_free_locked(me); in lnet_me_free() 425 lnet_me_t *me; in lnet_me_alloc() local 427 LIBCFS_ALLOC(me, sizeof(*me)); in lnet_me_alloc() 428 return me; in lnet_me_alloc() [all …]
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/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.1.27/kernel/ |
D | sys.c | 2041 static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr) in prctl_get_tid_address() argument 2043 return put_user(me->clear_child_tid, tid_addr); in prctl_get_tid_address() 2046 static int prctl_get_tid_address(struct task_struct *me, int __user **tid_addr) in prctl_get_tid_address() argument 2055 struct task_struct *me = current; in SYSCALL_DEFINE5() local 2056 unsigned char comm[sizeof(me->comm)]; in SYSCALL_DEFINE5() 2070 me->pdeath_signal = arg2; in SYSCALL_DEFINE5() 2073 error = put_user(me->pdeath_signal, (int __user *)arg2); in SYSCALL_DEFINE5() 2076 error = get_dumpable(me->mm); in SYSCALL_DEFINE5() 2083 set_dumpable(me->mm, arg2); in SYSCALL_DEFINE5() 2087 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.1.27/fs/ext4/ |
D | ioctl.c | 416 struct move_extent me; in ext4_ioctl() local 424 if (copy_from_user(&me, in ext4_ioctl() 425 (struct move_extent __user *)arg, sizeof(me))) in ext4_ioctl() 427 me.moved_len = 0; in ext4_ioctl() 429 donor = fdget(me.donor_fd); in ext4_ioctl() 450 err = ext4_move_extents(filp, donor.file, me.orig_start, in ext4_ioctl() 451 me.donor_start, me.len, &me.moved_len); in ext4_ioctl() 455 &me, sizeof(me))) in ext4_ioctl()
|
/linux-4.1.27/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 | 276 struct media_entity *me = &ve->vdev.entity; in isp_video_open() local 291 mutex_lock(&me->parent->graph_mutex); in isp_video_open() 293 ret = fimc_pipeline_call(ve, open, me, true); in isp_video_open() 297 me->use_count++; in isp_video_open() 299 mutex_unlock(&me->parent->graph_mutex); in isp_video_open() 495 struct media_entity *me = &ve->vdev.entity; in isp_video_streamon() local 498 ret = media_entity_pipeline_start(me, &ve->pipe->mp); in isp_video_streamon() 513 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 | 757 static struct media_entity *fimc_pipeline_get_head(struct media_entity *me) in fimc_pipeline_get_head() argument 759 struct media_pad *pad = &me->pads[0]; in fimc_pipeline_get_head() 765 me = pad->entity; in fimc_pipeline_get_head() 766 pad = &me->pads[0]; in fimc_pipeline_get_head() 769 return me; in fimc_pipeline_get_head() 790 struct media_entity *me; in fimc_pipeline_try_format() local 803 me = fimc_pipeline_get_head(&sd->entity); in fimc_pipeline_try_format() 818 while (me != &fimc->vid_cap.subdev.entity) { in fimc_pipeline_try_format() 819 sd = media_entity_to_v4l2_subdev(me); in fimc_pipeline_try_format() 826 if (me->pads[0].flags & MEDIA_PAD_FL_SINK) { in fimc_pipeline_try_format() [all …]
|
/linux-4.1.27/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.1.27/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.1.27/arch/powerpc/kvm/ |
D | book3s_hv_builtin.c | 241 int me, ee; in kvmhv_commence_exit() local 245 me = 0x100 << ptid; in kvmhv_commence_exit() 248 } while (cmpxchg(&vc->entry_exit_map, ee, ee | me) != ee); in kvmhv_commence_exit()
|
/linux-4.1.27/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.1.27/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.1.27/arch/arm64/kernel/ |
D | module.c | 200 struct module *me) in apply_relocate_add() argument 385 me->name, ELF64_R_TYPE(rel[i].r_info)); in apply_relocate_add() 398 me->name, (int)ELF64_R_TYPE(rel[i].r_info), val); in apply_relocate_add() 404 struct module *me) in module_finalize() argument
|
/linux-4.1.27/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.1.27/arch/x86/kernel/apic/ |
D | vector.c | 398 unsigned vector, me; in smp_irq_move_cleanup_interrupt() local 404 me = smp_processor_id(); in smp_irq_move_cleanup_interrupt() 433 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) in smp_irq_move_cleanup_interrupt() 458 unsigned me; in __irq_complete_move() local 463 me = smp_processor_id(); in __irq_complete_move() 465 if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain)) in __irq_complete_move()
|
/linux-4.1.27/include/linux/netfilter/ |
D | x_tables.h | 130 struct module *me; member 170 struct module *me; member 194 struct module *me; member
|
/linux-4.1.27/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.1.27/net/ipv6/netfilter/ |
D | ip6t_hbh.c | 192 .me = THIS_MODULE, 200 .me = THIS_MODULE,
|
D | ip6t_NPT.c | 119 .me = THIS_MODULE, 130 .me = THIS_MODULE,
|
D | ip6_tables.c | 576 module_put(par.match->me); in cleanup_match() 638 module_put(m->u.kernel.match->me); in find_check_match() 710 module_put(t->u.kernel.target->me); in find_check_entry() 799 module_put(par.target->me); in cleanup_entry() 1138 module_put(t->me); in get_info() 1180 module_put(t->me); in get_entries() 1231 module_put(t->me); in __do_replace() 1234 module_put(t->me); in __do_replace() 1255 module_put(t->me); in __do_replace() 1399 module_put(t->me); in do_add_counters() [all …]
|
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 | 105 .me = THIS_MODULE
|
D | ip6t_ipv6header.c | 139 .me = THIS_MODULE,
|
D | ip6t_ah.c | 107 .me = THIS_MODULE,
|
/linux-4.1.27/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.1.27/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.1.27/Documentation/isdn/ |
D | README.pcbit | 26 *do* send me a mail. 35 mailing list (isdn4linux@listserv.isdn4linux.de) or directly from me.
|
/linux-4.1.27/arch/tile/include/arch/ |
D | mpipe_shm.h | 222 uint_reg_t me : 1; member 330 uint_reg_t me : 1;
|
/linux-4.1.27/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.1.27/arch/alpha/lib/ |
D | dbg_stackcheck.S | 24 1: stq $31, -8($31) # oops me, damn it.
|
/linux-4.1.27/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.1.27/fs/qnx6/ |
D | README | 7 Al Viro <viro@ZenIV.linux.org.uk> (endless patience with me & support ;))
|
/linux-4.1.27/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.1.27/net/ipv4/netfilter/ |
D | ip_tables.c | 563 module_put(par.match->me); in cleanup_match() 625 module_put(m->u.kernel.match->me); in find_check_match() 696 module_put(t->u.kernel.target->me); in find_check_entry() 786 module_put(par.target->me); in cleanup_entry() 1125 module_put(t->me); in get_info() 1167 module_put(t->me); in get_entries() 1218 module_put(t->me); in __do_replace() 1221 module_put(t->me); in __do_replace() 1242 module_put(t->me); in __do_replace() 1384 module_put(t->me); in do_add_counters() [all …]
|
D | arp_tables.c | 539 module_put(t->u.kernel.target->me); in find_check_entry() 616 module_put(par.target->me); in cleanup_entry() 936 module_put(t->me); in get_info() 979 module_put(t->me); in get_entries() 1031 module_put(t->me); in __do_replace() 1034 module_put(t->me); in __do_replace() 1055 module_put(t->me); in __do_replace() 1196 module_put(t->me); in do_add_counters() 1209 module_put(t->u.kernel.target->me); in compat_release_entry() 1280 module_put(t->u.kernel.target->me); in check_compat_entry_size_and_hooks() [all …]
|
D | ipt_MASQUERADE.c | 69 .me = THIS_MODULE,
|
D | ipt_ah.c | 77 .me = THIS_MODULE,
|
D | arptable_filter.c | 23 .me = THIS_MODULE,
|
D | ipt_REJECT.c | 99 .me = THIS_MODULE,
|
D | iptable_raw.c | 16 .me = THIS_MODULE,
|
D | iptable_security.c | 34 .me = THIS_MODULE,
|
D | iptable_filter.c | 30 .me = THIS_MODULE,
|
D | arpt_mangle.c | 77 .me = THIS_MODULE,
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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 | ebtable_broute.c | 48 .me = THIS_MODULE,
|
D | ebt_snat.c | 71 .me = THIS_MODULE,
|
D | nf_log_bridge.c | 48 .me = THIS_MODULE,
|
D | ebtables.c | 381 module_put(match->me); in ebt_check_match() 412 module_put(watcher->me); in ebt_check_watcher() 601 module_put(par.match->me); in ebt_cleanup_match() 619 module_put(par.target->me); in ebt_cleanup_watcher() 644 module_put(par.target->me); in ebt_cleanup_entry() 737 module_put(t->u.target->me); in ebt_check_entry() 747 module_put(target->me); in ebt_check_entry() 1024 if (!table->nentries && newinfo->nentries && !try_module_get(t->me)) { in do_replace_finish() 1028 module_put(t->me); in do_replace_finish() 1228 if (newinfo->nentries && !try_module_get(table->me)) { in ebt_register_table() [all …]
|
D | ebt_mark.c | 94 .me = THIS_MODULE,
|
D | ebt_arpreply.c | 82 .me = THIS_MODULE,
|
D | ebt_mark_m.c | 82 .me = THIS_MODULE,
|
D | ebt_vlan.c | 165 .me = THIS_MODULE,
|
D | ebtable_filter.c | 56 .me = THIS_MODULE,
|
D | ebtable_nat.c | 56 .me = THIS_MODULE,
|
/linux-4.1.27/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.1.27/arch/mips/math-emu/ |
D | Makefile | 16 obj-$(CONFIG_DEBUG_FS) += me-debugfs.o
|
/linux-4.1.27/Documentation/input/ |
D | cd32.txt | 1 I have written a small patch that let's me use my Amiga CD32
|
/linux-4.1.27/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 | 492 struct media_entity *me = &sd->entity; in ipipe_init_entities() local 507 me->ops = &ipipe_media_ops; in ipipe_init_entities() 508 ret = media_entity_init(me, IPIPE_PADS_NUM, pads, 0); in ipipe_init_entities()
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | Victor | 14 For any comments, please feel free to contact me through the above
|
/linux-4.1.27/drivers/media/platform/omap3isp/ |
D | isp.c | 1122 static int isp_pipeline_is_last(struct media_entity *me) in isp_pipeline_is_last() argument 1127 if (!me->pipe) in isp_pipeline_is_last() 1129 pipe = to_isp_pipeline(me); in isp_pipeline_is_last() 1133 return pad->entity == me; in isp_pipeline_is_last() 1144 static void isp_suspend_module_pipeline(struct media_entity *me) in isp_suspend_module_pipeline() argument 1146 if (isp_pipeline_is_last(me)) in isp_suspend_module_pipeline() 1147 isp_pipeline_suspend(to_isp_pipeline(me)); in isp_suspend_module_pipeline() 1158 static void isp_resume_module_pipeline(struct media_entity *me) in isp_resume_module_pipeline() argument 1160 if (isp_pipeline_is_last(me)) in isp_resume_module_pipeline() 1161 isp_pipeline_resume(to_isp_pipeline(me)); in isp_resume_module_pipeline() [all …]
|
/linux-4.1.27/include/net/netfilter/ |
D | nf_conntrack_l3proto.h | 74 struct module *me; member
|
D | nf_conntrack_expect.h | 102 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.1.27/arch/m68k/hp300/ |
D | README.hp300 | 10 combination seems to work for me. Your mileage may vary.
|
/linux-4.1.27/drivers/infiniband/hw/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.1.27/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.1.27/arch/x86/kernel/cpu/ |
D | common.c | 1349 struct task_struct *me; in cpu_init() local 1378 me = current; in cpu_init() 1394 memset(me->thread.tls_array, 0, GDT_ENTRY_TLS_ENTRIES * 8); in cpu_init() 1429 me->active_mm = &init_mm; in cpu_init() 1430 BUG_ON(me->mm); in cpu_init() 1431 enter_lazy_tlb(&init_mm, me); in cpu_init()
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | ppc-pci.h | 36 typedef void *(*traverse_func)(struct device_node *me, void *data);
|
/linux-4.1.27/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.1.27/arch/x86/include/asm/ |
D | pvclock.h | 56 #error implement me! in pvclock_scale_delta()
|
/linux-4.1.27/Documentation/hwmon/ |
D | sch5627 | 27 request. Please mail me if you want a copy.
|
/linux-4.1.27/arch/m68k/mvme147/ |
D | config.c | 153 #warning check me! in mvme147_hwclk()
|
/linux-4.1.27/arch/nios2/kernel/ |
D | module.c | 134 struct module *me) in module_finalize() argument
|
/linux-4.1.27/Documentation/powerpc/ |
D | 00-INDEX | 3 please mail me.
|
/linux-4.1.27/net/sched/ |
D | act_ipt.c | 54 module_put(t->u.kernel.target->me); in ipt_init_target() 68 module_put(par.target->me); in ipt_destroy_target()
|
/linux-4.1.27/Documentation/scsi/ |
D | NinjaSCSI.txt | 118 Please send me some reports(bug reports etc..) of this software. 119 When you send report, please tell me these or more.
|
/linux-4.1.27/Documentation/arm/nwfpe/ |
D | README | 4 The majority of the code was written by me, Scott Bambrough It is 37 Bug reports, comments, suggestions should be directed to me at
|
/linux-4.1.27/virt/kvm/ |
D | kvm_main.c | 153 int i, cpu, me; in kvm_make_all_cpus_request() local 160 me = get_cpu(); in kvm_make_all_cpus_request() 168 if (cpus != NULL && cpu != -1 && cpu != me && in kvm_make_all_cpus_request() 1827 int me; in kvm_vcpu_kick() local 1837 me = get_cpu(); in kvm_vcpu_kick() 1838 if (cpu != me && (unsigned)cpu < nr_cpu_ids && cpu_online(cpu)) in kvm_vcpu_kick() 1905 void kvm_vcpu_on_spin(struct kvm_vcpu *me) in kvm_vcpu_on_spin() argument 1907 struct kvm *kvm = me->kvm; in kvm_vcpu_on_spin() 1909 int last_boosted_vcpu = me->kvm->last_boosted_vcpu; in kvm_vcpu_on_spin() 1915 kvm_vcpu_set_in_spin_loop(me, true); in kvm_vcpu_on_spin() [all …]
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/fifo/ |
D | nv50.c | 109 u32 addr, me; in nv50_fifo_context_detach() local 132 me = nv_mask(priv, 0x00b860, 0x00000001, 0x00000001); in nv50_fifo_context_detach() 142 nv_wr32(priv, 0x00b860, me); in nv50_fifo_context_detach()
|