Home
last modified time | relevance | path

Searched refs:rxcnt_count (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.4/tools/testing/selftests/bpf/progs/
Dtest_xdp.c41 __u64 *rxcnt_count; in count_tx() local
43 rxcnt_count = bpf_map_lookup_elem(&rxcnt, &protocol); in count_tx()
44 if (rxcnt_count) in count_tx()
45 *rxcnt_count += 1; in count_tx()
Dtest_xdp_loop.c37 __u64 *rxcnt_count; in count_tx() local
39 rxcnt_count = bpf_map_lookup_elem(&rxcnt, &protocol); in count_tx()
40 if (rxcnt_count) in count_tx()
41 *rxcnt_count += 1; in count_tx()
/Linux-v5.4/samples/bpf/
Dxdp_tx_iptunnel_kern.c38 u64 *rxcnt_count; in count_tx() local
40 rxcnt_count = bpf_map_lookup_elem(&rxcnt, &protocol); in count_tx()
41 if (rxcnt_count) in count_tx()
42 *rxcnt_count += 1; in count_tx()