Lines Matching refs:params
13 int timerlat_bpf_init(struct timerlat_params *params) in timerlat_bpf_init() argument
24 bpf->rodata->output_divisor = params->output_divisor; in timerlat_bpf_init()
25 bpf->rodata->entries = params->entries; in timerlat_bpf_init()
26 bpf->rodata->irq_threshold = params->stop_us; in timerlat_bpf_init()
27 bpf->rodata->thread_threshold = params->stop_total_us; in timerlat_bpf_init()
28 bpf->rodata->aa_only = params->aa_only; in timerlat_bpf_init()
30 if (params->entries != 0) { in timerlat_bpf_init()
32 bpf->rodata->bucket_size = params->bucket_size; in timerlat_bpf_init()
35 bpf_map__set_max_entries(bpf->maps.hist_irq, params->entries); in timerlat_bpf_init()
36 bpf_map__set_max_entries(bpf->maps.hist_thread, params->entries); in timerlat_bpf_init()
37 bpf_map__set_max_entries(bpf->maps.hist_user, params->entries); in timerlat_bpf_init()
45 if (params->aa_only) { in timerlat_bpf_init()