Home
last modified time | relevance | path

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

/linux-6.15/lib/
H A Dtest_objpool.c30 unsigned long nhits; member
253 normal.nhits += item->stat[0].nhits; in ot_perf_report()
255 irq.nhits += item->stat[1].nhits; in ot_perf_report()
259 item->stat[0].nhits, item->stat[0].nmiss); in ot_perf_report()
261 item->stat[1].nhits, item->stat[1].nmiss); in ot_perf_report()
263 item->stat[0].nhits + item->stat[1].nhits, in ot_perf_report()
268 total.nhits = normal.nhits + irq.nhits; in ot_perf_report()
273 total.nhits, total.nmiss); in ot_perf_report()
340 item->stat[irq].nhits++; in ot_bulk_sync()
524 item->stat[irq].nhits++; in ot_bulk_async()
[all …]
/linux-6.15/kernel/trace/
H A Dtrace_uprobe.c66 unsigned long __percpu *nhits; member
343 tu->nhits = alloc_percpu(unsigned long); in alloc_trace_uprobe()
344 if (!tu->nhits) { in alloc_trace_uprobe()
361 free_percpu(tu->nhits); in alloc_trace_uprobe()
375 free_percpu(tu->nhits); in free_trace_uprobe()
831 unsigned long nhits; in probes_profile_seq_show() local
839 nhits = 0; in probes_profile_seq_show()
841 nhits += per_cpu(*tu->nhits, cpu); in probes_profile_seq_show()
845 trace_probe_name(&tu->tp), nhits); in probes_profile_seq_show()
1541 this_cpu_inc(*tu->nhits); in uprobe_dispatcher()