diff options
Diffstat (limited to 'samples/bpf/test_lru_dist.c')
| -rw-r--r-- | samples/bpf/test_lru_dist.c | 11 | 
1 files changed, 7 insertions, 4 deletions
| diff --git a/samples/bpf/test_lru_dist.c b/samples/bpf/test_lru_dist.c index c92c5c06b965..75e877853596 100644 --- a/samples/bpf/test_lru_dist.c +++ b/samples/bpf/test_lru_dist.c @@ -105,10 +105,10 @@ struct pfect_lru {  static void pfect_lru_init(struct pfect_lru *lru, unsigned int lru_size,  			   unsigned int nr_possible_elems)  { -	lru->map_fd = bpf_create_map(BPF_MAP_TYPE_HASH, +	lru->map_fd = bpf_map_create(BPF_MAP_TYPE_HASH, NULL,  				     sizeof(unsigned long long),  				     sizeof(struct pfect_lru_node *), -				     nr_possible_elems, 0); +				     nr_possible_elems, NULL);  	assert(lru->map_fd != -1);  	lru->free_nodes = malloc(lru_size * sizeof(struct pfect_lru_node)); @@ -207,10 +207,13 @@ static unsigned int read_keys(const char *dist_file,  static int create_map(int map_type, int map_flags, unsigned int size)  { +	LIBBPF_OPTS(bpf_map_create_opts, opts, +		.map_flags = map_flags, +	);  	int map_fd; -	map_fd = bpf_create_map(map_type, sizeof(unsigned long long), -				sizeof(unsigned long long), size, map_flags); +	map_fd = bpf_map_create(map_type, NULL, sizeof(unsigned long long), +				sizeof(unsigned long long), size, &opts);  	if (map_fd == -1)  		perror("bpf_create_map"); |