Home
last modified time | relevance | path

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

12345678910>>...15

/linux/arch/mips/kernel/
H A Dmodule.c38 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/arm64/kernel/
H A Dmodule.c62 struct module *me) in reloc_data() argument
80 WRITE_PLACE((s16 *)place, sval, me); in reloc_data()
96 WRITE_PLACE((s32 *)place, sval, me); in reloc_data()
112 WRITE_PLACE((s64 *)place, sval, me); in reloc_data()
128 struct module *me) in reloc_insn_movw() argument
160 WRITE_PLACE(place, cpu_to_le32(insn), me); in reloc_insn_movw()
170 struct module *me) in reloc_insn_imm() argument
186 WRITE_PLACE(place, cpu_to_le32(insn), me); in reloc_insn_imm()
205 __le32 *place, u64 val, struct module *me) in reloc_insn_adrp() argument
211 AARCH64_INSN_IMM_ADR, me); in reloc_insn_adrp()
[all …]
/linux/drivers/staging/media/atomisp/pci/
H A Dsh_css_host_data.c13 struct ia_css_host_data *me; in ia_css_host_data_allocate() local
15 me = kmalloc_obj(struct ia_css_host_data); in ia_css_host_data_allocate()
16 if (!me) in ia_css_host_data_allocate()
18 me->size = (uint32_t)size; in ia_css_host_data_allocate()
19 me->address = kvmalloc(size, GFP_KERNEL); in ia_css_host_data_allocate()
20 if (!me->address) { in ia_css_host_data_allocate()
21 kfree(me); in ia_css_host_data_allocate()
24 return me; in ia_css_host_data_allocate()
27 void ia_css_host_data_free(struct ia_css_host_data *me) in ia_css_host_data_free() argument
29 if (me) { in ia_css_host_data_free()
[all …]
/linux/arch/riscv/kernel/
H A Dmodule.c37 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/fs/xfs/
H A Dxfs_verify_media.c178 const struct xfs_verify_media *me, in xfs_verify_iosize() argument
183 min_not_zero(SZ_1M, me->me_max_io_size); in xfs_verify_iosize()
214 struct xfs_verify_media *me, in xfs_verify_media_error() argument
220 trace_xfs_verify_media_error(mp, me, btp->bt_dev, daddr, bio_bbcount, in xfs_verify_media_error()
227 if (me->me_start_daddr == daddr) in xfs_verify_media_error()
228 me->me_ioerror = -blk_status_to_errno(bio_status); in xfs_verify_media_error()
244 if (!(me->me_flags & XFS_VERIFY_MEDIA_REPORT)) in xfs_verify_media_error()
247 xfs_healthmon_report_media(mp, me->me_dev, daddr, bio_bbcount); in xfs_verify_media_error()
252 switch (me->me_dev) { in xfs_verify_media_error()
266 struct xfs_verify_media *me) in xfs_verify_media() argument
[all …]
/linux/arch/parisc/kernel/
H A Dmodule.c63 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/tools/perf/util/
H A Dprint-events.c214 struct mep *me = malloc(sizeof(struct mep)); in mep_new() local
216 if (!me) in mep_new()
219 memcpy(me, entry, sizeof(struct mep)); in mep_new()
220 return &me->nd; in mep_new()
226 struct mep *me = container_of(nd, struct mep, nd); in mep_delete() local
228 zfree(&me->metric_group); in mep_delete()
229 free(me); in mep_delete()
236 struct mep me = { in mep_lookup() local
240 nd = rblist__find(groups, &me); in mep_lookup()
242 free(me in mep_lookup()
265 struct mep *me; metricgroup__add_to_mep_groups_callback() local
301 struct mep *me = container_of(node, struct mep, nd); metricgroup__print() local
[all...]
/linux/arch/powerpc/kernel/
H A Dmodule_64.c210 struct module *me) in get_stubs_size() argument
252 me->arch.ool_stub_count = sechdrs[i].sh_size / sizeof(unsigned long); in get_stubs_size()
253 me->arch.ool_stub_index = 0; in get_stubs_size()
254 relocs += roundup(me->arch.ool_stub_count * sizeof(struct ftrace_ool_stub), in get_stubs_size()
299 struct module *me) in get_got_size() argument
346 symindex, me->arch.pcpu_section); in get_got_size()
433 struct module *me) in module_frob_arch_sections() argument
440 me->arch.stubs_section = i; in module_frob_arch_sections()
443 me->arch.pcpu_section = i; in module_frob_arch_sections()
445 me->arch.got_section = i; in module_frob_arch_sections()
[all …]
H A Dmodule.c34 const Elf_Shdr *sechdrs, struct module *me) in module_finalize() argument
39 rc = module_finalize_ftrace(me, sechdrs); in module_finalize()
67 me->arch.start_opd = sect->sh_addr; in module_finalize()
68 me->arch.end_opd = sect->sh_addr + sect->sh_size; in module_finalize()
/linux/samples/mei/
H A Dmei-amt-version.c111 static bool mei_init(struct mei *me, const uuid_le *guid, in mei_init() argument
118 me->verbose = verbose; in mei_init()
120 me->fd = open("/dev/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 Dimpl_list_item_mod.rs204 unsafe fn view_links(me: *const Self) -> *mut $crate::list::ListLinks<$num> {
205 // SAFETY: The caller guarantees that `me` points at a valid value of type `Self`.
207 <Self as $crate::list::HasListLinks<$num>>::raw_get_list_links(me.cast_mut())
212 // * `me` originates from the most recent call to `prepare_to_insert`, which calls
220 unsafe fn view_value(me: *mut $crate::list::ListLinks<$num>) -> *const Self {
221 // SAFETY: `me` originates from the most recent call to `prepare_to_insert`, so it
224 unsafe { $crate::container_of!(me, Self, $($field).*) }
235 unsafe fn prepare_to_insert(me: *const Self) -> *mut $crate::list::ListLinks<$num> {
236 // SAFETY: The caller promises that `me` points at a valid value.
237 unsafe { <Self as $crate::list::ListItem<$num>>::view_links(me) }
[all...]
/linux/net/netfilter/
H A Dnf_conntrack_helper.c97 if (h != NULL && !try_module_get(h->me)) in nf_conntrack_helper_try_module_get()
100 module_put(h->me); in nf_conntrack_helper_try_module_get()
112 module_put(helper->me); in nf_conntrack_helper_put()
368 int __nf_conntrack_helper_register(struct nf_conntrack_helper *me) in __nf_conntrack_helper_register() argument
374 BUG_ON(me->expect_class_max >= NF_CT_MAX_EXPECT_CLASSES); in __nf_conntrack_helper_register()
375 BUG_ON(strlen(me->name) > NF_CT_HELPER_NAME_LEN - 1); in __nf_conntrack_helper_register()
380 for (i = 0; i <= me->expect_class_max; i++) { in __nf_conntrack_helper_register()
381 if (!me->expect_policy[i].max_expected) in __nf_conntrack_helper_register()
382 me->expect_policy[i].max_expected = NF_CT_EXPECT_MAX_CNT; in __nf_conntrack_helper_register()
384 if (me->expect_policy[i].max_expected > NF_CT_EXPECT_MAX_CNT) in __nf_conntrack_helper_register()
[all …]
H A Dxt_mark.c49 .me = THIS_MODULE,
58 .me = THIS_MODULE,
68 .me = THIS_MODULE,
79 .me = THIS_MODULE,
/linux/drivers/staging/media/atomisp/pci/runtime/frame/src/
H A Dframe.c359 struct ia_css_frame *me = frame_create(0, 0, in ia_css_frame_allocate_with_buffer_size() local
363 if (!me) in ia_css_frame_allocate_with_buffer_size()
367 me->data_bytes = buffer_size_bytes; in ia_css_frame_allocate_with_buffer_size()
369 err = frame_allocate_buffer_data(me); in ia_css_frame_allocate_with_buffer_size()
372 kvfree(me); in ia_css_frame_allocate_with_buffer_size()
373 me = NULL; in ia_css_frame_allocate_with_buffer_size()
376 *frame = me; in ia_css_frame_allocate_with_buffer_size()
621 struct ia_css_frame *me = frame_create(width, in frame_allocate_with_data() local
628 if (!me) in frame_allocate_with_data()
631 err = ia_css_frame_init_planes(me); in frame_allocate_with_data()
[all …]
/linux/tools/testing/selftests/rcutorture/bin/
H A Djitter.sh8 # Usage: jitter.sh me jittering-path duration [ sleepmax [ spinmax ] ]
10 # me: Random-number-generator seed salt.
20 me=$(($1 * 1000))
84 cpumask=`awk -v cpus="$cpus" -v me=$me -v n=$n 'BEGIN {
85 srand(n + me + systime());
97 sleeptime=`awk -v me=$me -v n=$n -v sleepmax=$sleepmax 'BEGIN {
98 srand(n + me + systime());
105 limit=`awk -v me
[all...]
/linux/tools/testing/selftests/net/
H A Darp_ndisc_evict_nocarrier.sh26 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
H A Dfib_nexthops.sh180 setup_ns me peer remote
181 create_ns $me
185 IP="ip -netns $me"
186 BRIDGE="bridge -netns $me"
223 for ns in $me $peer $remote; do
916 …run_cmd "ip netns exec $me mausezahn -6 veth1.10 -B 2001:db8:101::1 -A 2001:db8:91::1 -c 5 -t tcp …
942 timeout -s KILL 5 ip netns exec $me ip link del veth1.10 >/dev/null 2>&1
1197 run_cmd "ip netns exec $me ping -c1 -w$PING_TIMEOUT 2001:db8:101::1"
1203 run_cmd "ip netns exec $me ping -c1 -w$PING_TIMEOUT 2001:db8:101::1"
1211 run_cmd "ip netns exec $me ping -c1 -w$PING_TIMEOUT 2001:db8:101::1"
[all …]
/linux/drivers/misc/mei/
H A DMakefile17 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 Dmodule.c65 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 Dvrf.c144 static int vrf_map_elem_get_vrf_ifindex(struct vrf_map_elem *me) in vrf_map_elem_get_vrf_ifindex() argument
146 struct list_head *me_head = &me->vrf_list; in vrf_map_elem_get_vrf_ifindex()
159 struct vrf_map_elem *me; in vrf_map_elem_alloc() local
161 me = kmalloc_obj(*me, flags); in vrf_map_elem_alloc()
162 if (!me) in vrf_map_elem_alloc()
165 return me; in vrf_map_elem_alloc()
168 static void vrf_map_elem_free(struct vrf_map_elem *me) in vrf_map_elem_free() argument
170 kfree(me); in vrf_map_elem_free()
173 static void vrf_map_elem_init(struct vrf_map_elem *me, int table_id, in vrf_map_elem_init() argument
176 me->table_id = table_id; in vrf_map_elem_init()
[all …]
/linux/kernel/rcu/
H A Drcuscale.c451 long me = (long)arg; in rcu_scale_reader() local
454 set_cpus_allowed_ptr(current, cpumask_of(me % nr_cpu_ids)); in rcu_scale_reader()
478 long me = (long)arg; in rcu_scale_exp() local
481 set_cpus_allowed_ptr(current, cpumask_of(me % nr_cpu_ids)); in rcu_scale_exp()
501 static struct writer_mblock *rcu_scale_alloc(long me) in rcu_scale_alloc() argument
509 wflp = &writer_freelists[me]; in rcu_scale_alloc()
557 long me = (long)arg; in rcu_scale_writer() local
563 u64 *wdpp = writer_durations[me]; in rcu_scale_writer()
564 struct writer_freelist *wflp = &writer_freelists[me]; in rcu_scale_writer()
569 set_cpus_allowed_ptr(current, cpumask_of(me % nr_cpu_ids)); in rcu_scale_writer()
[all …]
/linux/rust/kernel/
H A Dlist.rs323 unsafe fn view_links(me: *const Self) -> *mut ListLinks<ID>;
341 unsafe fn view_value(me: *mut ListLinks<ID>) -> *const Self;
359 unsafe fn prepare_to_insert(me: *const Self) -> *mut ListLinks<ID>;
371 unsafe fn post_remove(me: *mut ListLinks<ID>) -> *const Self;
416 /// `me` must be dereferenceable.
418 unsafe fn fields(me: *mut Self) -> *mut ListLinksFields {
420 unsafe { Opaque::cast_into(ptr::addr_of!((*me).inner)) }
425 /// `me` must be dereferenceable.
427 unsafe fn from_fields(me: *mut ListLinksFields) -> *mut Self {
428 me
1128 let me = unsafe { T::view_value(ListLinks::from_fields(self.ptr)) }; arc() localVariable
1155 let me = unsafe { T::view_value(ListLinks::from_fields(self.ptr)) }; deref() localVariable
[all...]
/linux/Documentation/admin-guide/aoe/
H A Dudev-install.sh5 me="`basename $0`"
16 echo "$me Error: no udev.conf found" 1>&2
30 echo "$me Error: cannot find udev rules directory" 1>&2
/linux/arch/sparc/kernel/
H A Dleon_smp.c111 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/arch/sh/kernel/
H A Dmodule.c28 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()

12345678910>>...15