Home
last modified time | relevance | path

Searched refs:nhits (Results 1 – 2 of 2) sorted by relevance

/linux-6.12.1/lib/
Dtest_objpool.c30 unsigned long nhits; member
254 normal.nhits += item->stat[0].nhits; in ot_perf_report()
256 irq.nhits += item->stat[1].nhits; in ot_perf_report()
260 item->stat[0].nhits, item->stat[0].nmiss); in ot_perf_report()
262 item->stat[1].nhits, item->stat[1].nmiss); in ot_perf_report()
264 item->stat[0].nhits + item->stat[1].nhits, in ot_perf_report()
269 total.nhits = normal.nhits + irq.nhits; in ot_perf_report()
274 total.nhits, total.nmiss); in ot_perf_report()
341 item->stat[irq].nhits++; in ot_bulk_sync()
529 item->stat[irq].nhits++; in ot_bulk_async()
[all …]
/linux-6.12.1/kernel/trace/
Dtrace_uprobe.c66 unsigned long __percpu *nhits; member
341 tu->nhits = alloc_percpu(unsigned long); in alloc_trace_uprobe()
342 if (!tu->nhits) { in alloc_trace_uprobe()
359 free_percpu(tu->nhits); in alloc_trace_uprobe()
373 free_percpu(tu->nhits); in free_trace_uprobe()
829 unsigned long nhits; in probes_profile_seq_show() local
837 nhits = 0; in probes_profile_seq_show()
839 nhits += per_cpu(*tu->nhits, cpu); in probes_profile_seq_show()
843 trace_probe_name(&tu->tp), nhits); in probes_profile_seq_show()
1534 this_cpu_inc(*tu->nhits); in uprobe_dispatcher()