Searched refs:arr_timer (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | timer.c | 133 struct bpf_timer *arr_timer, *lru_timer; in BPF_PROG2() local 138 arr_timer = bpf_map_lookup_elem(&array, &array_key); in BPF_PROG2() 139 if (!arr_timer) in BPF_PROG2() 141 bpf_timer_init(arr_timer, &array, CLOCK_MONOTONIC); in BPF_PROG2() 149 bpf_timer_set_callback(arr_timer, timer_cb1); in BPF_PROG2() 150 bpf_timer_start(arr_timer, 0 /* call timer_cb1 asap */, 0); in BPF_PROG2() 156 arr_timer = bpf_map_lookup_elem(&array, &array_key); in BPF_PROG2() 157 if (!arr_timer) in BPF_PROG2() 159 bpf_timer_init(arr_timer, &array, CLOCK_MONOTONIC); in BPF_PROG2() 174 struct bpf_timer *arr_timer; in timer_cb2() local [all …]
|