Lines Matching defs:stats
1823 static void bpf_prog_get_stats(const struct bpf_prog *prog, struct bpf_prog_stats *stats)
1834 st = per_cpu_ptr(prog->aux->stats, cpu);
1843 stats->nsecs = nsecs;
1844 stats->cnt = cnt;
1852 struct bpf_prog_stats stats;
1854 bpf_prog_get_stats(prog, &stats);
1864 prog->type, prog->jited, prog_tag, prog->pages * 1ULL << PAGE_SHIFT, prog->aux->id, stats.nsecs,
1865 stats.cnt);
3465 struct bpf_prog_stats stats;
3512 bpf_prog_get_stats(prog, &stats);
3513 info.run_time_ns = stats.nsecs;
3514 info.run_cnt = stats.cnt;
4344 fd = anon_inode_getfd("bpf-stats", &bpf_stats_fops, NULL, O_CLOEXEC);