Home
last modified time | relevance | path

Searched refs:rec (Results 1 – 25 of 199) sorted by relevance

12345678

/linux/drivers/net/ethernet/aquantia/atlantic/macsec/
H A Dmacsec_api.c263 const struct aq_mss_ingress_prectlf_record *rec, in set_ingress_prectlf_record() argument
273 packed_record[0] = rec->sa_da[0] & 0xFFFF; in set_ingress_prectlf_record()
274 packed_record[1] = (rec->sa_da[0] >> 16) & 0xFFFF; in set_ingress_prectlf_record()
275 packed_record[2] = rec->sa_da[1] & 0xFFFF; in set_ingress_prectlf_record()
276 packed_record[3] = rec->eth_type & 0xFFFF; in set_ingress_prectlf_record()
277 packed_record[4] = rec->match_mask & 0xFFFF; in set_ingress_prectlf_record()
278 packed_record[5] = rec->match_type & 0xF; in set_ingress_prectlf_record()
279 packed_record[5] |= (rec->action & 0x1) << 4; in set_ingress_prectlf_record()
287 const struct aq_mss_ingress_prectlf_record *rec, in aq_mss_set_ingress_prectlf_record() argument
290 return AQ_API_CALL_SAFE(set_ingress_prectlf_record, hw, rec, in aq_mss_set_ingress_prectlf_record()
[all …]
H A Dmacsec_api.h54 struct aq_mss_egress_ctlf_record *rec,
63 const struct aq_mss_egress_ctlf_record *rec,
72 struct aq_mss_egress_class_record *rec,
81 const struct aq_mss_egress_class_record *rec,
90 struct aq_mss_egress_sc_record *rec,
99 const struct aq_mss_egress_sc_record *rec,
108 struct aq_mss_egress_sa_record *rec,
117 const struct aq_mss_egress_sa_record *rec,
126 struct aq_mss_egress_sakey_record *rec,
135 const struct aq_mss_egress_sakey_record *rec,
[all …]
/linux/include/sound/
H A Dpcm-indirect.h28 struct snd_pcm_indirect *rec, size_t bytes);
35 struct snd_pcm_indirect *rec, in snd_pcm_indirect_playback_transfer() argument
40 snd_pcm_sframes_t diff = appl_ptr - rec->appl_ptr; in snd_pcm_indirect_playback_transfer()
48 rec->sw_ready += (int)frames_to_bytes(runtime, diff); in snd_pcm_indirect_playback_transfer()
49 rec->appl_ptr = appl_ptr; in snd_pcm_indirect_playback_transfer()
51 qsize = rec->hw_queue_size ? rec->hw_queue_size : rec->hw_buffer_size; in snd_pcm_indirect_playback_transfer()
52 while (rec->hw_ready < qsize && rec->sw_ready > 0) { in snd_pcm_indirect_playback_transfer()
53 unsigned int hw_to_end = rec->hw_buffer_size - rec->hw_data; in snd_pcm_indirect_playback_transfer()
54 unsigned int sw_to_end = rec->sw_buffer_size - rec->sw_data; in snd_pcm_indirect_playback_transfer()
55 unsigned int bytes = qsize - rec->hw_ready; in snd_pcm_indirect_playback_transfer()
[all …]
/linux/tools/testing/selftests/net/bench/page_pool/
H A Dtime_bench.c111 bool time_bench_calc_stats(struct time_bench_record *rec) in time_bench_calc_stats() argument
122 if (rec->flags & TIME_BENCH_LOOP) { in time_bench_calc_stats()
123 if (rec->invoked_cnt < 1000) { in time_bench_calc_stats()
125 rec->invoked_cnt); in time_bench_calc_stats()
128 if (rec->invoked_cnt > ((1ULL << 32) - 1)) { in time_bench_calc_stats()
131 rec->invoked_cnt); in time_bench_calc_stats()
134 invoked_cnt = (uint32_t)rec->invoked_cnt; in time_bench_calc_stats()
138 if (rec->flags & TIME_BENCH_TSC) { in time_bench_calc_stats()
139 rec->tsc_interval = rec->tsc_stop - rec->tsc_start; in time_bench_calc_stats()
140 if (rec->tsc_interval == 0) { in time_bench_calc_stats()
[all …]
H A Dbench_page_pool_simple.c47 static int time_bench_for_loop(struct time_bench_record *rec, void *data) in time_bench_for_loop() argument
52 time_bench_start(rec); in time_bench_for_loop()
54 for (i = 0; i < rec->loops; i++) { in time_bench_for_loop()
58 time_bench_stop(rec, loops_cnt); in time_bench_for_loop()
62 static int time_bench_atomic_inc(struct time_bench_record *rec, void *data) in time_bench_atomic_inc() argument
70 time_bench_start(rec); in time_bench_atomic_inc()
72 for (i = 0; i < rec->loops; i++) { in time_bench_atomic_inc()
77 time_bench_stop(rec, loops_cnt); in time_bench_atomic_inc()
85 static int time_bench_lock(struct time_bench_record *rec, void *data) in time_bench_lock() argument
93 time_bench_start(rec); in time_bench_lock()
[all …]
H A Dtime_bench.h64 struct time_bench_record rec; member
202 int (*func)(struct time_bench_record *rec, void *data));
203 bool time_bench_calc_stats(struct time_bench_record *rec);
214 static __always_inline void time_bench_start(struct time_bench_record *rec) in time_bench_start() argument
217 ktime_get_real_ts64(&rec->ts_start); in time_bench_start()
218 if (rec->flags & TIME_BENCH_PMU) { in time_bench_start()
219 rec->pmc_inst_start = pmc_inst(); in time_bench_start()
220 rec->pmc_clk_start = pmc_clk(); in time_bench_start()
222 rec->tsc_start = tsc_start_clock(); in time_bench_start()
225 static __always_inline void time_bench_stop(struct time_bench_record *rec, in time_bench_stop() argument
[all …]
/linux/tools/perf/
H A Dbuiltin-record.c115 struct record *rec; member
218 static int record__threads_enabled(struct record *rec) in record__threads_enabled() argument
220 return rec->opts.threads_spec; in record__threads_enabled()
223 static bool switch_output_signal(struct record *rec) in switch_output_signal() argument
225 return rec->switch_output.signal && in switch_output_signal()
229 static bool switch_output_size(struct record *rec) in switch_output_size() argument
231 return rec->switch_output.size && in switch_output_size()
233 (rec->bytes_written >= rec->switch_output.size); in switch_output_size()
236 static bool switch_output_time(struct record *rec) in switch_output_time() argument
238 return rec->switch_output.time && in switch_output_time()
[all …]
/linux/drivers/usb/misc/
H A Demi26.c76 const struct ihex_binrec *rec; in emi26_load_firmware() local
109 rec = (const struct ihex_binrec *)loader_fw->data; in emi26_load_firmware()
111 while (rec) { in emi26_load_firmware()
112 err = emi26_writememory(dev, be32_to_cpu(rec->addr), in emi26_load_firmware()
113 rec->data, be16_to_cpu(rec->len), in emi26_load_firmware()
117 rec = ihex_next_binrec(rec); in emi26_load_firmware()
129 rec = (const struct ihex_binrec *)bitstream_fw->data; in emi26_load_firmware()
132 addr = be32_to_cpu(rec->addr); in emi26_load_firmware()
135 while (rec && (i + be16_to_cpu(rec->len) < FW_LOAD_SIZE)) { in emi26_load_firmware()
136 memcpy(buf + i, rec->data, be16_to_cpu(rec->len)); in emi26_load_firmware()
[all …]
H A Demi62.c84 const struct ihex_binrec *rec; in emi62_load_firmware() local
115 rec = (const struct ihex_binrec *)loader_fw->data; in emi62_load_firmware()
118 while (rec) { in emi62_load_firmware()
119 err = emi62_writememory(dev, be32_to_cpu(rec->addr), in emi62_load_firmware()
120 rec->data, be16_to_cpu(rec->len), in emi62_load_firmware()
124 rec = ihex_next_binrec(rec); in emi62_load_firmware()
136 rec = (const struct ihex_binrec *)bitstream_fw->data; in emi62_load_firmware()
139 addr = be32_to_cpu(rec->addr); in emi62_load_firmware()
142 while (rec && (i + be16_to_cpu(rec->len) < FW_LOAD_SIZE)) { in emi62_load_firmware()
143 memcpy(buf + i, rec->data, be16_to_cpu(rec->len)); in emi62_load_firmware()
[all …]
/linux/samples/bpf/
H A Dxdp_sample.bpf.c70 struct datarec *rec; in xdp_redirect_collect_stat() local
79 rec = bpf_map_lookup_elem(&redir_err_cnt, &idx); in xdp_redirect_collect_stat()
80 if (!rec) in xdp_redirect_collect_stat()
83 NO_TEAR_INC(rec->dropped); in xdp_redirect_collect_stat()
85 NO_TEAR_INC(rec->processed); in xdp_redirect_collect_stat()
132 struct datarec *rec; in BPF_PROG() local
139 rec = bpf_map_lookup_elem(&cpumap_enqueue_cnt, &idx); in BPF_PROG()
140 if (!rec) in BPF_PROG()
142 NO_TEAR_ADD(rec->processed, processed); in BPF_PROG()
143 NO_TEAR_ADD(rec->dropped, drops); in BPF_PROG()
[all …]
H A Dxdp_sample_user.c340 static void map_collect_percpu(struct datarec *values, struct record *rec) in map_collect_percpu() argument
353 rec->timestamp = gettime(); in map_collect_percpu()
357 rec->cpu[i].processed = READ_ONCE(values[i].processed); in map_collect_percpu()
358 rec->cpu[i].dropped = READ_ONCE(values[i].dropped); in map_collect_percpu()
359 rec->cpu[i].issue = READ_ONCE(values[i].issue); in map_collect_percpu()
360 rec->cpu[i].xdp_pass = READ_ONCE(values[i].xdp_pass); in map_collect_percpu()
361 rec->cpu[i].xdp_drop = READ_ONCE(values[i].xdp_drop); in map_collect_percpu()
362 rec->cpu[i].xdp_redirect = READ_ONCE(values[i].xdp_redirect); in map_collect_percpu()
364 sum_processed += rec->cpu[i].processed; in map_collect_percpu()
365 sum_dropped += rec->cpu[i].dropped; in map_collect_percpu()
[all …]
/linux/arch/powerpc/kernel/trace/
H A Dftrace.c132 static unsigned long ftrace_get_ool_stub(struct dyn_ftrace *rec) in ftrace_get_ool_stub() argument
135 return rec->arch.ool_stub; in ftrace_get_ool_stub()
141 static int ftrace_get_call_inst(struct dyn_ftrace *rec, unsigned long addr, ppc_inst_t *call_inst) in ftrace_get_call_inst() argument
147 ip = ftrace_get_ool_stub(rec) + MCOUNT_INSN_SIZE; /* second instruction in stub */ in ftrace_get_call_inst()
149 ip = rec->ip; in ftrace_get_call_inst()
156 ip, rec->ip, addr); in ftrace_get_call_inst()
172 pr_err("0x%lx (0x%lx): No ftrace stubs reachable\n", ip, rec->ip); in ftrace_get_call_inst()
180 static int ftrace_init_ool_stub(struct module *mod, struct dyn_ftrace *rec) in ftrace_init_ool_stub() argument
199 WARN_ON(rec->arch.ool_stub); in ftrace_init_ool_stub()
201 if (is_kernel_inittext(rec->ip)) { in ftrace_init_ool_stub()
[all …]
/linux/drivers/gpu/drm/radeon/
H A Dradeon_i2c.c89 struct radeon_i2c_bus_rec *rec = &i2c->rec; in pre_xfer() local
98 if (rec->hw_capable) { in pre_xfer()
111 if (rec->a_clk_reg == reg) { in pre_xfer()
123 if (ASIC_IS_DCE3(rdev) && rec->hw_capable) { in pre_xfer()
124 temp = RREG32(rec->mask_clk_reg); in pre_xfer()
126 WREG32(rec->mask_clk_reg, temp); in pre_xfer()
130 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask; in pre_xfer()
131 WREG32(rec->a_clk_reg, temp); in pre_xfer()
133 temp = RREG32(rec->a_data_reg) & ~rec->a_data_mask; in pre_xfer()
134 WREG32(rec->a_data_reg, temp); in pre_xfer()
[all …]
/linux/drivers/ras/amd/
H A Dfmpm.c170 #define for_each_fru(i, rec) \ argument
171 for (i = 0; rec = fru_records[i], i < max_nr_fru; i++)
173 static inline u32 get_fmp_len(struct fru_rec *rec) in get_fmp_len() argument
175 return rec->sec_desc.section_length - sizeof(struct cper_section_descriptor); in get_fmp_len()
180 struct fru_rec *rec; in get_fru_record() local
183 for_each_fru(i, rec) { in get_fru_record()
184 if (rec->fmp.fru_id == fru_id) in get_fru_record()
185 return rec; in get_fru_record()
215 static int update_record_on_storage(struct fru_rec *rec) in update_record_on_storage() argument
221 len = get_fmp_len(rec); in update_record_on_storage()
[all …]
/linux/sound/core/seq/oss/
H A Dseq_oss_timer.c35 struct seq_oss_timer *rec; in snd_seq_oss_timer_new() local
37 rec = kzalloc(sizeof(*rec), GFP_KERNEL); in snd_seq_oss_timer_new()
38 if (rec == NULL) in snd_seq_oss_timer_new()
41 rec->dp = dp; in snd_seq_oss_timer_new()
42 rec->cur_tick = 0; in snd_seq_oss_timer_new()
43 rec->realtime = 0; in snd_seq_oss_timer_new()
44 rec->running = 0; in snd_seq_oss_timer_new()
45 rec->oss_tempo = 60; in snd_seq_oss_timer_new()
46 rec->oss_timebase = 100; in snd_seq_oss_timer_new()
47 calc_alsa_tempo(rec); in snd_seq_oss_timer_new()
[all …]
H A Dseq_oss_rw.c23 static int insert_queue(struct seq_oss_devinfo *dp, union evrec *rec, struct file *opt);
36 union evrec rec; in snd_seq_oss_read() local
44 err = snd_seq_oss_readq_pick(readq, &rec); in snd_seq_oss_read()
53 err = snd_seq_oss_readq_pick(readq, &rec); in snd_seq_oss_read()
59 ev_len = ev_length(&rec); in snd_seq_oss_read()
66 if (copy_to_user(buf, &rec, ev_len)) { in snd_seq_oss_read()
87 union evrec rec; in snd_seq_oss_write() local
93 if (copy_from_user(&rec, buf, SHORT_EVENT_SIZE)) { in snd_seq_oss_write()
97 if (rec.s.code == SEQ_FULLSIZE) { in snd_seq_oss_write()
103 fmt = (*(unsigned short *)rec.c) & 0xffff; in snd_seq_oss_write()
[all …]
/linux/arch/riscv/kernel/
H A Dftrace.c81 static const struct ftrace_ops *riscv64_rec_get_ops(struct dyn_ftrace *rec) in riscv64_rec_get_ops() argument
85 if (rec->flags & FTRACE_FL_CALL_OPS_EN) { in riscv64_rec_get_ops()
86 ops = ftrace_find_unique_ops(rec); in riscv64_rec_get_ops()
96 static int ftrace_rec_set_ops(const struct dyn_ftrace *rec, const struct ftrace_ops *ops) in ftrace_rec_set_ops() argument
98 unsigned long literal = ALIGN_DOWN(rec->ip - 12, 8); in ftrace_rec_set_ops()
103 static int ftrace_rec_set_nop_ops(struct dyn_ftrace *rec) in ftrace_rec_set_nop_ops() argument
105 return ftrace_rec_set_ops(rec, &ftrace_nop_ops); in ftrace_rec_set_nop_ops()
108 static int ftrace_rec_update_ops(struct dyn_ftrace *rec) in ftrace_rec_update_ops() argument
110 return ftrace_rec_set_ops(rec, riscv64_rec_get_ops(rec)); in ftrace_rec_update_ops()
113 static int ftrace_rec_set_nop_ops(struct dyn_ftrace *rec) { return 0; } in ftrace_rec_set_nop_ops() argument
[all …]
/linux/include/linux/
H A Dpstore.h240 pstore_ftrace_encode_cpu(struct pstore_ftrace_record *rec, unsigned int cpu) in pstore_ftrace_encode_cpu() argument
242 rec->ip |= cpu; in pstore_ftrace_encode_cpu()
246 pstore_ftrace_decode_cpu(struct pstore_ftrace_record *rec) in pstore_ftrace_decode_cpu() argument
248 return rec->ip & PSTORE_CPU_IN_IP; in pstore_ftrace_decode_cpu()
252 pstore_ftrace_read_timestamp(struct pstore_ftrace_record *rec) in pstore_ftrace_read_timestamp() argument
254 return rec->ts; in pstore_ftrace_read_timestamp()
258 pstore_ftrace_write_timestamp(struct pstore_ftrace_record *rec, u64 val) in pstore_ftrace_write_timestamp() argument
260 rec->ts = val; in pstore_ftrace_write_timestamp()
264 pstore_ftrace_encode_cpu(struct pstore_ftrace_record *rec, unsigned int cpu) in pstore_ftrace_encode_cpu() argument
266 rec->ts &= ~(TS_CPU_MASK); in pstore_ftrace_encode_cpu()
[all …]
H A Dihex.h31 __ihex_next_binrec(const struct ihex_binrec *rec) in __ihex_next_binrec() argument
33 const void *p = rec; in __ihex_next_binrec()
35 return p + ALIGN(ihex_binrec_size(rec), 4); in __ihex_next_binrec()
39 ihex_next_binrec(const struct ihex_binrec *rec) in ihex_next_binrec() argument
41 rec = __ihex_next_binrec(rec); in ihex_next_binrec()
43 return be16_to_cpu(rec->len) ? rec : NULL; in ihex_next_binrec()
49 const struct ihex_binrec *end, *rec; in ihex_validate_fw() local
51 rec = (const void *)fw->data; in ihex_validate_fw()
54 for (; rec <= end; rec = __ihex_next_binrec(rec)) { in ihex_validate_fw()
56 if (rec == end && !be16_to_cpu(rec->len)) in ihex_validate_fw()
/linux/tools/perf/jvmti/
H A Djvmti_agent.c333 struct jr_code_close rec; in jvmti_close() local
341 rec.p.id = JIT_CODE_CLOSE; in jvmti_close()
342 rec.p.total_size = sizeof(rec); in jvmti_close()
344 rec.p.timestamp = perf_get_timestamp(); in jvmti_close()
346 if (!fwrite(&rec, sizeof(rec), 1, fp)) in jvmti_close()
363 struct jr_code_load rec; in jvmti_write_code() local
379 rec.p.id = JIT_CODE_LOAD; in jvmti_write_code()
380 rec.p.total_size = sizeof(rec) + sym_len; in jvmti_write_code()
381 rec.p.timestamp = perf_get_timestamp(); in jvmti_write_code()
383 rec.code_size = size; in jvmti_write_code()
[all …]
/linux/fs/xfs/scrub/
H A Dbmap_repair.c193 const struct xfs_rmap_irec *rec) in xrep_bmap_check_fork_rmap() argument
204 !(rec->rm_flags & (XFS_RMAP_ATTR_FORK | XFS_RMAP_BMBT_BLOCK))) in xrep_bmap_check_fork_rmap()
208 if (!xfs_verify_agbext(to_perag(cur->bc_group), rec->rm_startblock, in xrep_bmap_check_fork_rmap()
209 rec->rm_blockcount)) in xrep_bmap_check_fork_rmap()
213 if (!(rec->rm_flags & XFS_RMAP_BMBT_BLOCK) && in xrep_bmap_check_fork_rmap()
214 !xfs_verify_fileext(sc->mp, rec->rm_offset, rec->rm_blockcount)) in xrep_bmap_check_fork_rmap()
218 if ((rec->rm_flags & (XFS_RMAP_ATTR_FORK | XFS_RMAP_BMBT_BLOCK)) && in xrep_bmap_check_fork_rmap()
219 (rec->rm_flags & XFS_RMAP_UNWRITTEN)) in xrep_bmap_check_fork_rmap()
223 error = xfs_alloc_has_records(sc->sa.bno_cur, rec->rm_startblock, in xrep_bmap_check_fork_rmap()
224 rec->rm_blockcount, &outcome); in xrep_bmap_check_fork_rmap()
[all …]
/linux/fs/xfs/libxfs/
H A Dxfs_ialloc.c59 union xfs_btree_rec rec; in xfs_inobt_update() local
61 rec.inobt.ir_startino = cpu_to_be32(irec->ir_startino); in xfs_inobt_update()
63 rec.inobt.ir_u.sp.ir_holemask = cpu_to_be16(irec->ir_holemask); in xfs_inobt_update()
64 rec.inobt.ir_u.sp.ir_count = irec->ir_count; in xfs_inobt_update()
65 rec.inobt.ir_u.sp.ir_freecount = irec->ir_freecount; in xfs_inobt_update()
68 rec.inobt.ir_u.f.ir_freecount = cpu_to_be32(irec->ir_freecount); in xfs_inobt_update()
70 rec.inobt.ir_free = cpu_to_be64(irec->ir_free); in xfs_inobt_update()
71 return xfs_btree_update(cur, &rec); in xfs_inobt_update()
78 const union xfs_btree_rec *rec, in xfs_inobt_btrec_to_irec() argument
81 irec->ir_startino = be32_to_cpu(rec->inobt.ir_startino); in xfs_inobt_btrec_to_irec()
[all …]
/linux/arch/s390/kernel/
H A Dftrace.c76 int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec) in ftrace_init_nop() argument
107 if (copy_from_kernel_nofault(&old, (void *)rec->ip, sizeof(old))) in ftrace_init_nop()
117 tmp.rest_of_intercepted_function = rec->ip + sizeof(struct ftrace_insn); in ftrace_init_nop()
121 disp = ((char *)trampoline - (char *)rec->ip) / 2; in ftrace_init_nop()
122 insn = (struct ftrace_insn *)rec->ip; in ftrace_init_nop()
128 static struct ftrace_hotpatch_trampoline *ftrace_get_trampoline(struct dyn_ftrace *rec) in ftrace_get_trampoline() argument
135 if (copy_from_kernel_nofault(&insn, (void *)rec->ip, sizeof(insn))) in ftrace_get_trampoline()
138 trampoline = (void *)(rec->ip + disp); in ftrace_get_trampoline()
172 static int ftrace_modify_trampoline_call(struct dyn_ftrace *rec, in ftrace_modify_trampoline_call() argument
179 trampoline = ftrace_get_trampoline(rec); in ftrace_modify_trampoline_call()
[all …]
/linux/fs/ocfs2/
H A Dextent_map.c214 struct ocfs2_extent_rec *rec) in ocfs2_extent_map_insert_rec() argument
221 ins.ei_cpos = le32_to_cpu(rec->e_cpos); in ocfs2_extent_map_insert_rec()
223 le64_to_cpu(rec->e_blkno)); in ocfs2_extent_map_insert_rec()
224 ins.ei_clusters = le16_to_cpu(rec->e_leaf_clusters); in ocfs2_extent_map_insert_rec()
225 ins.ei_flags = rec->e_flags; in ocfs2_extent_map_insert_rec()
320 struct ocfs2_extent_rec *rec; in ocfs2_search_for_hole_index() local
323 rec = &el->l_recs[i]; in ocfs2_search_for_hole_index()
325 if (v_cluster < le32_to_cpu(rec->e_cpos)) in ocfs2_search_for_hole_index()
406 struct ocfs2_extent_rec *rec; in ocfs2_get_clusters_nocache() local
469 rec = &el->l_recs[i]; in ocfs2_get_clusters_nocache()
[all …]
/linux/kernel/trace/
H A Dftrace.c459 struct ftrace_profile *rec = v; in function_stat_next() local
462 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK); in function_stat_next()
466 rec++; in function_stat_next()
468 if ((void *)rec >= (void *)&pg->records[pg->index]) { in function_stat_next()
472 rec = &pg->records[0]; in function_stat_next()
473 if (!rec->counter) in function_stat_next()
477 return rec; in function_stat_next()
538 struct ftrace_profile *rec = v; in function_stat_show() local
550 if (unlikely(rec->counter == 0)) in function_stat_show()
554 avg = div64_ul(rec in function_stat_show()
739 struct ftrace_profile *rec; ftrace_find_profiled_func() local
758 ftrace_add_profile(struct ftrace_profile_stat * stat,struct ftrace_profile * rec) ftrace_add_profile() argument
772 struct ftrace_profile *rec = NULL; ftrace_profile_alloc() local
807 struct ftrace_profile *rec; function_profile_call() local
875 struct ftrace_profile *rec; profile_graph_return() local
1592 do_for_each_ftrace_rec(pg,rec) global() argument
1606 const struct dyn_ftrace *rec = b; ftrace_cmp_recs() local
1618 struct dyn_ftrace *rec = NULL; lookup_rec() local
1652 struct dyn_ftrace *rec; ftrace_location_range() local
1712 test_rec_ops_needs_regs(struct dyn_ftrace * rec) test_rec_ops_needs_regs() argument
1738 skip_record(struct dyn_ftrace * rec) skip_record() argument
1766 struct dyn_ftrace *rec; __ftrace_hash_rec_update() local
2004 struct dyn_ftrace *rec, *end = NULL; __ftrace_hash_update_ipmodify() local
2194 ftrace_bug(int failed,struct dyn_ftrace * rec) ftrace_bug() argument
2251 ftrace_check_record(struct dyn_ftrace * rec,bool enable,bool update) ftrace_check_record() argument
2428 ftrace_update_record(struct dyn_ftrace * rec,bool enable) ftrace_update_record() argument
2442 ftrace_test_record(struct dyn_ftrace * rec,bool enable) ftrace_test_record() argument
2448 ftrace_find_tramp_ops_any(struct dyn_ftrace * rec) ftrace_find_tramp_ops_any() argument
2466 ftrace_find_tramp_ops_any_other(struct dyn_ftrace * rec,struct ftrace_ops * op_exclude) ftrace_find_tramp_ops_any_other() argument
2484 ftrace_find_tramp_ops_next(struct dyn_ftrace * rec,struct ftrace_ops * op) ftrace_find_tramp_ops_next() argument
2502 ftrace_find_tramp_ops_curr(struct dyn_ftrace * rec) ftrace_find_tramp_ops_curr() argument
2572 ftrace_find_tramp_ops_new(struct dyn_ftrace * rec) ftrace_find_tramp_ops_new() argument
2587 ftrace_find_unique_ops(struct dyn_ftrace * rec) ftrace_find_unique_ops() argument
2647 ftrace_get_addr_new(struct dyn_ftrace * rec) ftrace_get_addr_new() argument
2688 ftrace_get_addr_curr(struct dyn_ftrace * rec) ftrace_get_addr_curr() argument
2720 __ftrace_replace_code(struct dyn_ftrace * rec,bool enable) __ftrace_replace_code() argument
2757 struct dyn_ftrace *rec; ftrace_replace_code() local
2855 ftrace_nop_initialize(struct module * mod,struct dyn_ftrace * rec) ftrace_nop_initialize() argument
3189 struct dyn_ftrace *rec; ftrace_shutdown() local
4163 struct dyn_ftrace *rec = NULL; t_func_next() local
4297 arch_ftrace_trampoline_func(struct ftrace_ops * ops,struct dyn_ftrace * rec) arch_ftrace_trampoline_func() argument
4303 add_trampoline_func(struct seq_file * m,struct ftrace_ops * ops,struct dyn_ftrace * rec) add_trampoline_func() argument
4323 test_for_valid_rec(struct dyn_ftrace * rec) test_for_valid_rec() argument
4348 struct dyn_ftrace *rec; ftrace_check_work_func() local
4399 test_for_valid_rec(struct dyn_ftrace * rec) test_for_valid_rec() argument
4411 print_subops(struct seq_file * m,struct ftrace_ops * ops,struct dyn_ftrace * rec) print_subops() argument
4450 struct dyn_ftrace *rec; t_show() local
4819 enter_record(struct ftrace_hash * hash,struct dyn_ftrace * rec,int clear_filter) enter_record() argument
4847 struct dyn_ftrace *rec; add_rec_by_index() local
4885 ftrace_match_record(struct dyn_ftrace * rec,struct ftrace_glob * func_g,struct ftrace_glob * mod_g,int exclude_mod) ftrace_match_record() argument
4931 struct dyn_ftrace *rec; match_records() local
6981 struct dyn_ftrace *rec; ftrace_graph_set_hash() local
7178 struct dyn_ftrace *rec; ftrace_process_locs() local
7418 referenced_filters(struct dyn_ftrace * rec) referenced_filters() argument
7446 struct dyn_ftrace *rec; clear_mod_from_hash() local
7502 struct dyn_ftrace *rec; ftrace_release_mod() local
7574 struct dyn_ftrace *rec; ftrace_module_enable() local
7667 save_ftrace_mod_rec(struct ftrace_mod_map * mod_map,struct dyn_ftrace * rec) save_ftrace_mod_rec() argument
7813 save_ftrace_mod_rec(struct ftrace_mod_map * mod_map,struct dyn_ftrace * rec) save_ftrace_mod_rec() argument
7873 add_to_clear_hash_list(struct list_head * clear_list,struct dyn_ftrace * rec) add_to_clear_hash_list() argument
7894 struct dyn_ftrace *rec; ftrace_free_mem() local
[all...]

12345678