Home
last modified time | relevance | path

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

/linux/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/kernel/trace/
H A Dtrace_uprobe.c68 unsigned long __percpu *nhits; member
345 tu->nhits = alloc_percpu(unsigned long); in alloc_trace_uprobe()
346 if (!tu->nhits) { in alloc_trace_uprobe()
363 free_percpu(tu->nhits); in alloc_trace_uprobe()
377 free_percpu(tu->nhits); in free_trace_uprobe()
826 unsigned long nhits; in probes_profile_seq_show() local
834 nhits = 0; in probes_profile_seq_show()
836 nhits += per_cpu(*tu->nhits, cpu); in probes_profile_seq_show()
840 trace_probe_name(&tu->tp), nhits); in probes_profile_seq_show()
1537 this_cpu_inc(*tu->nhits); in uprobe_dispatcher()