/linux/arch/mips/kernel/ |
H A D | module.c | 38 static int apply_r_mips_26(struct module *me, u32 *location, u32 base, in apply_r_mips_26() argument 43 me->name); in apply_r_mips_26() 49 me->name); in apply_r_mips_26() 59 static int apply_r_mips_hi16(struct module *me, u32 *location, Elf_Addr v, in apply_r_mips_hi16() argument 81 n->next = me->arch.r_mips_hi16_list; in apply_r_mips_hi16() 82 me->arch.r_mips_hi16_list = n; in apply_r_mips_hi16() 98 static int apply_r_mips_lo16(struct module *me, u32 *location, in apply_r_mips_lo16() argument 113 if (me->arch.r_mips_hi16_list != NULL) { in apply_r_mips_lo16() 114 l = me->arch.r_mips_hi16_list; in apply_r_mips_lo16() 149 me->arch.r_mips_hi16_list = NULL; in apply_r_mips_lo16() [all …]
|
/linux/arch/s390/kernel/ |
H A D | module.c | 57 static void check_rela(Elf_Rela *rela, struct module *me) in check_rela() argument 61 info = me->arch.syminfo + ELF_R_SYM (rela->r_info); in check_rela() 76 info->got_offset = me->arch.got_size; in check_rela() 77 me->arch.got_size += sizeof(void*); in check_rela() 88 info->plt_offset = me->arch.plt_size; in check_rela() 89 me->arch.plt_size += PLT_ENTRY_SIZE; in check_rela() 107 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(array_size(sizeof(struct mod_arch_syminfo), in module_frob_arch_sections() [all …]
|
/linux/arch/riscv/kernel/ |
H A D | module.c | 37 int (*reloc_handler)(struct module *me, void *location, Elf_Addr v); 38 int (*accumulate_handler)(struct module *me, void *location, 80 static int apply_r_riscv_32_rela(struct module *me, void *location, Elf_Addr v) in apply_r_riscv_32_rela() argument 84 me->name, (long long)v); in apply_r_riscv_32_rela() 91 static int apply_r_riscv_64_rela(struct module *me, void *location, Elf_Addr v) in apply_r_riscv_64_rela() argument 97 static int apply_r_riscv_branch_rela(struct module *me, void *location, in apply_r_riscv_branch_rela() argument 109 static int apply_r_riscv_jal_rela(struct module *me, void *location, in apply_r_riscv_jal_rela() argument 121 static int apply_r_riscv_rvc_branch_rela(struct module *me, void *location, in apply_r_riscv_rvc_branch_rela() argument 135 static int apply_r_riscv_rvc_jump_rela(struct module *me, void *location, in apply_r_riscv_rvc_jump_rela() argument 152 static int apply_r_riscv_pcrel_hi20_rela(struct module *me, void *location, in apply_r_riscv_pcrel_hi20_rela() argument [all …]
|
/linux/arch/parisc/kernel/ |
H A D | module.c | 63 me->name, strtab + sym->st_name, (unsigned long)val, bits); \ 270 struct module *me) in module_frob_arch_sections() argument 276 len = hdr->e_shnum * sizeof(me->arch.section[0]); in module_frob_arch_sections() 277 me->arch.section = kzalloc(len, GFP_KERNEL); in module_frob_arch_sections() 278 if (!me->arch.section) in module_frob_arch_sections() 288 me->arch.unwind_section = i; in module_frob_arch_sections() 313 WARN_ON(me->arch.section[s].stub_entries); in module_frob_arch_sections() 316 me->arch.section[s].stub_entries += count; in module_frob_arch_sections() 319 mod_mem = &me->mem[MOD_TEXT]; in module_frob_arch_sections() 322 me->arch.got_offset = mod_mem->size; in module_frob_arch_sections() [all …]
|
/linux/drivers/staging/media/atomisp/pci/runtime/isys/src/ |
H A D | virtual_isys.c | 266 input_system_channel_t *me) in create_input_system_channel() argument 270 me->dma_id = ISYS2401_DMA0_ID; in create_input_system_channel() 275 me->stream2mmio_id = STREAM2MMIO0_ID; in create_input_system_channel() 276 me->ibuf_ctrl_id = IBUF_CTRL0_ID; in create_input_system_channel() 281 me->stream2mmio_id = STREAM2MMIO1_ID; in create_input_system_channel() 282 me->ibuf_ctrl_id = IBUF_CTRL1_ID; in create_input_system_channel() 287 me->stream2mmio_id = STREAM2MMIO2_ID; in create_input_system_channel() 288 me->ibuf_ctrl_id = IBUF_CTRL2_ID; in create_input_system_channel() 298 if (!acquire_sid(me->stream2mmio_id, &me->stream2mmio_sid_id)) { in create_input_system_channel() 312 &me->ib_buffer)) { in create_input_system_channel() [all …]
|
/linux/samples/mei/ |
H A 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/mei0", 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/rust/kernel/list/ |
H A D | impl_list_item_mod.rs | 134 unsafe fn view_links(me: *const Self) -> *mut $crate::list::ListLinks<$num> { 137 <Self as $crate::list::HasListLinks<$num>>::raw_get_list_links(me.cast_mut()) 150 unsafe fn view_value(me: *mut $crate::list::ListLinks<$num>) -> *const Self { 155 unsafe { (me as *const u8).sub(offset) as *const Self } 166 unsafe fn prepare_to_insert(me: *const Self) -> *mut $crate::list::ListLinks<$num> { 168 unsafe { <Self as $crate::list::ListItem<$num>>::view_links(me) } 176 unsafe fn post_remove(me: *mut $crate::list::ListLinks<$num>) -> *const Self { 181 unsafe { (me as *const u8).sub(offset) as *const Self } 201 unsafe fn prepare_to_insert(me: *const Self) -> *mut $crate::list::ListLinks<$num> { 203 let links_field = unsafe { <Self as $crate::list::ListItem<$num>>::view_links(me) }; [all …]
|
/linux/net/netfilter/ |
H A D | nf_conntrack_helper.c | 93 if (h != NULL && !try_module_get(h->me)) in nf_conntrack_helper_try_module_get() 96 module_put(h->me); in nf_conntrack_helper_try_module_get() 109 module_put(helper->me); in nf_conntrack_helper_put() 241 static int unhelp(struct nf_conn *ct, void *me) in unhelp() argument 245 if (help && rcu_dereference_raw(help->helper) == me) { in unhelp() 347 int nf_conntrack_helper_register(struct nf_conntrack_helper *me) in nf_conntrack_helper_register() argument 350 unsigned int h = helper_hash(&me->tuple); in nf_conntrack_helper_register() 354 BUG_ON(me->expect_policy == NULL); in nf_conntrack_helper_register() 355 BUG_ON(me->expect_class_max >= NF_CT_MAX_EXPECT_CLASSES); in nf_conntrack_helper_register() 356 BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1); in nf_conntrack_helper_register() [all …]
|
H A D | xt_tcpudp.c | 264 .me = THIS_MODULE, 273 .me = THIS_MODULE, 282 .me = THIS_MODULE, 291 .me = THIS_MODULE, 300 .me = THIS_MODULE, 309 .me = THIS_MODULE, 318 .me = THIS_MODULE, 327 .me = THIS_MODULE,
|
H A D | xt_mark.c | 49 .me = THIS_MODULE, 58 .me = THIS_MODULE, 68 .me = THIS_MODULE, 79 .me = THIS_MODULE,
|
H A D | xt_socket.c | 237 .me = THIS_MODULE, 249 .me = THIS_MODULE, 262 .me = THIS_MODULE, 275 .me = THIS_MODULE, 288 .me = THIS_MODULE, 301 .me = THIS_MODULE, 314 .me = THIS_MODULE,
|
/linux/drivers/infiniband/hw/hfi1/ |
H A D | msix.c | 81 struct hfi1_msix_entry *me; in msix_request_irq() local 113 me = &dd->msix_info.msix_entries[nr]; in msix_request_irq() 114 me->irq = irq; in msix_request_irq() 115 me->arg = arg; in msix_request_irq() 116 me->type = type; in msix_request_irq() 119 ret = hfi1_get_irq_affinity(dd, me); in msix_request_irq() 288 struct hfi1_msix_entry *me; in msix_free_irq() local 293 me = &dd->msix_info.msix_entries[msix_intr]; in msix_free_irq() 295 if (!me->arg) /* => no irq, no affinity */ in msix_free_irq() 298 hfi1_put_irq_affinity(dd, me); in msix_free_irq() [all …]
|
/linux/tools/testing/selftests/rcutorture/bin/ |
H A D | jitter.sh | 20 me=$(($1 * 1000)) 68 cpumask=`awk -v cpus="$cpus" -v me=$me -v n=$n 'BEGIN { 81 sleeptime=`awk -v me=$me -v n=$n -v sleepmax=$sleepmax 'BEGIN { 89 limit=`awk -v me=$me -v n=$n -v spinmax=$spinmax 'BEGIN {
|
/linux/tools/perf/util/ |
H A D | metricgroup.c | 41 struct metric_event me = { in metricgroup__lookup() 49 me.evsel = evsel->metric_leader; in metricgroup__lookup() 50 nd = rblist__find(metric_events, &me); in metricgroup__lookup() 54 rblist__add_node(metric_events, &me); in metricgroup__lookup() 55 nd = rblist__find(metric_events, &me); in metricgroup__lookup() 79 struct metric_event *me = malloc(sizeof(struct metric_event)); in metric_event_new() 81 if (!me) in metric_event_new() 83 memcpy(me, entry, sizeof(struct metric_event)); in metric_event_new() 84 me->evsel = ((struct metric_event *)entry)->evsel; in metric_event_new() 85 me in metric_event_new() 40 struct metric_event me = { metricgroup__lookup() local 78 struct metric_event *me = malloc(sizeof(struct metric_event)); metric_event_new() local 92 struct metric_event *me = container_of(rb_node, struct metric_event, nd); metric_event_delete() local 414 struct mep *me = malloc(sizeof(struct mep)); mep_new() local 426 struct mep *me = container_of(nd, struct mep, nd); mep_delete() local 436 struct mep me = { mep_lookup() local 463 struct mep *me; metricgroup__add_to_mep_groups() local 543 struct mep *me = container_of(node, struct mep, nd); metricgroup__print() local 1578 struct metric_event *me; parse_groups() local [all...] |
/linux/tools/testing/selftests/net/ |
H A D | fib_nexthops.sh | 176 setup_ns me peer remote 177 create_ns $me 181 IP="ip -netns $me" 182 BRIDGE="bridge -netns $me" 219 for ns in $me $peer $remote; do 783 …run_cmd "ip netns exec $me mausezahn -6 veth1.10 -B 2001:db8:101::1 -A 2001:db8:91::1 -c 5 -t tcp … 809 timeout -s KILL 5 ip netns exec $me ip link del veth1.10 >/dev/null 2>&1 1064 run_cmd "ip netns exec $me ping -c1 -w$PING_TIMEOUT 2001:db8:101::1" 1070 run_cmd "ip netns exec $me ping -c1 -w$PING_TIMEOUT 2001:db8:101::1" 1078 run_cmd "ip netns exec $me ping -c1 -w$PING_TIMEOUT 2001:db8:101::1" [all …]
|
H A D | arp_ndisc_evict_nocarrier.sh | 26 cleanup_ns ${me} ${peer} 33 setup_ns me peer 35 IP="ip -netns ${me}" 43 ip netns exec ${me} sysctl -w $1 >/dev/null 2>&1 46 ip netns exec ${me} ping -6 -c1 -Iveth1 $V6_ADDR1 >/dev/null 2>&1 48 ip netns exec ${me} ip -6 neigh get $V6_ADDR1 dev veth1 >/dev/null 2>&1 152 ip netns exec ${me} ip -6 neigh get $V6_ADDR1 dev veth1 >/dev/null 2>&1 169 ip netns exec ${me} ip -6 neigh get $V6_ADDR1 dev veth1 >/dev/null 2>&1 186 ip netns exec ${me} ip -6 neigh get $V6_ADDR1 dev veth1 >/dev/null 2>&1
|
/linux/drivers/misc/mei/ |
H A 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 22 mei-gsc-objs := gsc-me.o
|
/linux/arch/alpha/kernel/ |
H A D | module.c | 65 char *secstrings, struct module *me) in module_frob_arch_sections() argument 83 me->arch.gotsecindex = s - sechdrs; in module_frob_arch_sections() 87 printk(KERN_ERR "module %s: no symbol table\n", me->name); in module_frob_arch_sections() 91 printk(KERN_ERR "module %s: no got section\n", me->name); in module_frob_arch_sections() 100 me->name); in module_frob_arch_sections() 135 struct module *me) in apply_relocate_add() argument 149 got = sechdrs[me->arch.gotsecindex].sh_addr; in apply_relocate_add() 255 me->name, r_type); in apply_relocate_add() 261 me->name, r_type, sym->st_shndx); in apply_relocate_add() 265 me->name, r_type, strtab + sym->st_name); in apply_relocate_add()
|
/linux/drivers/net/ |
H A D | vrf.c | 153 static int vrf_map_elem_get_vrf_ifindex(struct vrf_map_elem *me) in vrf_map_elem_get_vrf_ifindex() argument 155 struct list_head *me_head = &me->vrf_list; in vrf_map_elem_get_vrf_ifindex() 168 struct vrf_map_elem *me; in vrf_map_elem_alloc() local 170 me = kmalloc(sizeof(*me), flags); in vrf_map_elem_alloc() 171 if (!me) in vrf_map_elem_alloc() 174 return me; in vrf_map_elem_alloc() 177 static void vrf_map_elem_free(struct vrf_map_elem *me) in vrf_map_elem_free() argument 179 kfree(me); in vrf_map_elem_free() 182 static void vrf_map_elem_init(struct vrf_map_elem *me, int table_id, in vrf_map_elem_init() argument 185 me->table_id = table_id; in vrf_map_elem_init() [all …]
|
/linux/kernel/ |
H A D | sys.c | 2282 static int prctl_get_tid_address(struct task_struct *me, int __user * __user *tid_addr) in prctl_get_tid_address() argument 2284 return put_user(me->clear_child_tid, tid_addr); in prctl_get_tid_address() 2287 static int prctl_get_tid_address(struct task_struct *me, int __user * __user *tid_addr) in prctl_get_tid_address() argument 2470 struct task_struct *me = current; in SYSCALL_DEFINE5() local 2471 unsigned char comm[sizeof(me->comm)]; in SYSCALL_DEFINE5() 2485 me->pdeath_signal = arg2; in SYSCALL_DEFINE5() 2488 error = put_user(me->pdeath_signal, (int __user *)arg2); in SYSCALL_DEFINE5() 2491 error = get_dumpable(me->mm); in SYSCALL_DEFINE5() 2498 set_dumpable(me->mm, arg2); in SYSCALL_DEFINE5() 2502 error = SET_UNALIGN_CTL(me, arg2); in SYSCALL_DEFINE5() [all …]
|
H A D | nsproxy.c | 333 struct task_struct *me = current; in prepare_nsset() local 335 nsset->nsproxy = create_new_namespaces(0, me, current_user_ns(), me->fs); in prepare_nsset() 348 nsset->fs = me->fs; in prepare_nsset() 350 nsset->fs = copy_fs_struct(me->fs); in prepare_nsset() 515 struct task_struct *me = current; in commit_nsset() local 527 set_fs_root(me->fs, &nsset->fs->root); in commit_nsset() 528 set_fs_pwd(me->fs, &nsset->fs->pwd); in commit_nsset() 533 exit_sem(me); in commit_nsset() 538 timens_commit(me, nsset->nsproxy->time_ns); in commit_nsset() 542 switch_task_namespaces(me, nsset->nsproxy); in commit_nsset()
|
/linux/arch/sparc/kernel/ |
H A D | leon_smp.c | 111 int me = smp_processor_id(); in leon_configure_cache_smp() local 116 (unsigned int)cfg, (unsigned int)me); in leon_configure_cache_smp() 123 me); in leon_configure_cache_smp() 161 int me = smp_processor_id(); in leon_boot_cpus() local 166 printk(KERN_INFO "%d:(%d:%d) cpus mpirq at 0x%x\n", (unsigned int)me, in leon_boot_cpus() 170 leon_enable_irq_cpu(LEON3_IRQ_CROSS_CALL, me); in leon_boot_cpus() 171 leon_enable_irq_cpu(LEON3_IRQ_TICKER, me); in leon_boot_cpus() 172 leon_enable_irq_cpu(leon_ipi_irq, me); in leon_boot_cpus()
|
/linux/kernel/rcu/ |
H A D | rcuscale.c | 462 long me = (long)arg; in rcu_scale_reader() local 465 set_cpus_allowed_ptr(current, cpumask_of(me % nr_cpu_ids)); in rcu_scale_reader() 484 static struct writer_mblock *rcu_scale_alloc(long me) in rcu_scale_alloc() argument 492 wflp = &writer_freelists[me]; in rcu_scale_alloc() 538 long me = (long)arg; in rcu_scale_writer() local 544 u64 *wdpp = writer_durations[me]; in rcu_scale_writer() 545 struct writer_freelist *wflp = &writer_freelists[me]; in rcu_scale_writer() 550 set_cpus_allowed_ptr(current, cpumask_of(me % nr_cpu_ids)); in rcu_scale_writer() 588 wmbp = rcu_scale_alloc(me); in rcu_scale_writer() 615 WRITE_ONCE(writer_done[me], true); in rcu_scale_writer() [all …]
|
/linux/Documentation/admin-guide/aoe/ |
H A 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
|
/linux/arch/sh/kernel/ |
H A D | module.c | 28 struct module *me) in apply_relocate_add() argument 83 me->name, ELF32_R_TYPE(rel[i].r_info)); in apply_relocate_add() 92 struct module *me) in module_finalize() argument 96 ret |= module_dwarf_finalize(hdr, sechdrs, me); in module_finalize()
|