Searched refs:next_key_p (Results 1 – 2 of 2) sorted by relevance
/Linux-v5.10/tools/testing/selftests/bpf/ |
D | test_lpm_map.c | 538 struct bpf_lpm_trie_key *key_p, *next_key_p; in test_lpm_get_next_key() local 545 next_key_p = alloca(key_size); in test_lpm_get_next_key() 565 assert(bpf_map_get_next_key(map_fd, key_p, next_key_p) == -1 && in test_lpm_get_next_key() 584 memset(next_key_p, 0, key_size); in test_lpm_get_next_key() 585 assert(bpf_map_get_next_key(map_fd, key_p, next_key_p) == 0); in test_lpm_get_next_key() 586 assert(next_key_p->prefixlen == 16 && next_key_p->data[0] == 192 && in test_lpm_get_next_key() 587 next_key_p->data[1] == 168); in test_lpm_get_next_key() 589 memcpy(key_p, next_key_p, key_size); in test_lpm_get_next_key() 590 assert(bpf_map_get_next_key(map_fd, key_p, next_key_p) == -1 && in test_lpm_get_next_key() 603 memset(next_key_p, 0, key_size); in test_lpm_get_next_key() [all …]
|
D | test_progs.c | 304 __u32 key, next_key, *cur_key_p, *next_key_p; in compare_stack_ips() local 311 next_key_p = &key; in compare_stack_ips() 312 while (bpf_map_get_next_key(smap_fd, cur_key_p, next_key_p) == 0) { in compare_stack_ips() 313 err = bpf_map_lookup_elem(smap_fd, next_key_p, val_buf1); in compare_stack_ips() 316 err = bpf_map_lookup_elem(amap_fd, next_key_p, val_buf2); in compare_stack_ips() 325 key = *next_key_p; in compare_stack_ips() 327 next_key_p = &next_key; in compare_stack_ips()
|