Searched refs:next_key_p (Results 1 – 2 of 2) sorted by relevance
/Linux-v4.19/tools/testing/selftests/bpf/ |
D | test_lpm_map.c | 528 struct bpf_lpm_trie_key *key_p, *next_key_p; in test_lpm_get_next_key() local 535 next_key_p = alloca(key_size); in test_lpm_get_next_key() 555 assert(bpf_map_get_next_key(map_fd, key_p, next_key_p) == -1 && in test_lpm_get_next_key() 574 memset(next_key_p, 0, key_size); in test_lpm_get_next_key() 575 assert(bpf_map_get_next_key(map_fd, key_p, next_key_p) == 0); in test_lpm_get_next_key() 576 assert(next_key_p->prefixlen == 16 && next_key_p->data[0] == 192 && in test_lpm_get_next_key() 577 next_key_p->data[1] == 168); in test_lpm_get_next_key() 579 memcpy(key_p, next_key_p, key_size); in test_lpm_get_next_key() 580 assert(bpf_map_get_next_key(map_fd, key_p, next_key_p) == -1 && in test_lpm_get_next_key() 593 memset(next_key_p, 0, key_size); in test_lpm_get_next_key() [all …]
|
D | test_progs.c | 911 __u32 key, next_key, *cur_key_p, *next_key_p; in compare_stack_ips() local 918 next_key_p = &key; in compare_stack_ips() 919 while (bpf_map_get_next_key(smap_fd, cur_key_p, next_key_p) == 0) { in compare_stack_ips() 920 err = bpf_map_lookup_elem(smap_fd, next_key_p, val_buf1); in compare_stack_ips() 923 err = bpf_map_lookup_elem(amap_fd, next_key_p, val_buf2); in compare_stack_ips() 932 key = *next_key_p; in compare_stack_ips() 934 next_key_p = &next_key; in compare_stack_ips()
|