|
@@ -137,20 +137,20 @@ static void test_hashmap_sizes(int task, void *data)
|
|
static void test_hashmap_percpu(int task, void *data)
|
|
static void test_hashmap_percpu(int task, void *data)
|
|
{
|
|
{
|
|
unsigned int nr_cpus = bpf_num_possible_cpus();
|
|
unsigned int nr_cpus = bpf_num_possible_cpus();
|
|
- long long value[nr_cpus];
|
|
|
|
|
|
+ BPF_DECLARE_PERCPU(long, value);
|
|
long long key, next_key, first_key;
|
|
long long key, next_key, first_key;
|
|
int expected_key_mask = 0;
|
|
int expected_key_mask = 0;
|
|
int fd, i;
|
|
int fd, i;
|
|
|
|
|
|
fd = bpf_create_map(BPF_MAP_TYPE_PERCPU_HASH, sizeof(key),
|
|
fd = bpf_create_map(BPF_MAP_TYPE_PERCPU_HASH, sizeof(key),
|
|
- sizeof(value[0]), 2, map_flags);
|
|
|
|
|
|
+ sizeof(bpf_percpu(value, 0)), 2, map_flags);
|
|
if (fd < 0) {
|
|
if (fd < 0) {
|
|
printf("Failed to create hashmap '%s'!\n", strerror(errno));
|
|
printf("Failed to create hashmap '%s'!\n", strerror(errno));
|
|
exit(1);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
|
|
for (i = 0; i < nr_cpus; i++)
|
|
for (i = 0; i < nr_cpus; i++)
|
|
- value[i] = i + 100;
|
|
|
|
|
|
+ bpf_percpu(value, i) = i + 100;
|
|
|
|
|
|
key = 1;
|
|
key = 1;
|
|
/* Insert key=1 element. */
|
|
/* Insert key=1 element. */
|
|
@@ -170,8 +170,9 @@ static void test_hashmap_percpu(int task, void *data)
|
|
/* Check that key=1 can be found. Value could be 0 if the lookup
|
|
/* Check that key=1 can be found. Value could be 0 if the lookup
|
|
* was run from a different CPU.
|
|
* was run from a different CPU.
|
|
*/
|
|
*/
|
|
- value[0] = 1;
|
|
|
|
- assert(bpf_map_lookup_elem(fd, &key, value) == 0 && value[0] == 100);
|
|
|
|
|
|
+ bpf_percpu(value, 0) = 1;
|
|
|
|
+ assert(bpf_map_lookup_elem(fd, &key, value) == 0 &&
|
|
|
|
+ bpf_percpu(value, 0) == 100);
|
|
|
|
|
|
key = 2;
|
|
key = 2;
|
|
/* Check that key=2 is not found. */
|
|
/* Check that key=2 is not found. */
|
|
@@ -211,7 +212,7 @@ static void test_hashmap_percpu(int task, void *data)
|
|
assert(bpf_map_lookup_elem(fd, &next_key, value) == 0);
|
|
assert(bpf_map_lookup_elem(fd, &next_key, value) == 0);
|
|
|
|
|
|
for (i = 0; i < nr_cpus; i++)
|
|
for (i = 0; i < nr_cpus; i++)
|
|
- assert(value[i] == i + 100);
|
|
|
|
|
|
+ assert(bpf_percpu(value, i) == i + 100);
|
|
|
|
|
|
key = next_key;
|
|
key = next_key;
|
|
}
|
|
}
|
|
@@ -296,34 +297,36 @@ static void test_arraymap(int task, void *data)
|
|
static void test_arraymap_percpu(int task, void *data)
|
|
static void test_arraymap_percpu(int task, void *data)
|
|
{
|
|
{
|
|
unsigned int nr_cpus = bpf_num_possible_cpus();
|
|
unsigned int nr_cpus = bpf_num_possible_cpus();
|
|
|
|
+ BPF_DECLARE_PERCPU(long, values);
|
|
int key, next_key, fd, i;
|
|
int key, next_key, fd, i;
|
|
- long long values[nr_cpus];
|
|
|
|
|
|
|
|
fd = bpf_create_map(BPF_MAP_TYPE_PERCPU_ARRAY, sizeof(key),
|
|
fd = bpf_create_map(BPF_MAP_TYPE_PERCPU_ARRAY, sizeof(key),
|
|
- sizeof(values[0]), 2, 0);
|
|
|
|
|
|
+ sizeof(bpf_percpu(values, 0)), 2, 0);
|
|
if (fd < 0) {
|
|
if (fd < 0) {
|
|
printf("Failed to create arraymap '%s'!\n", strerror(errno));
|
|
printf("Failed to create arraymap '%s'!\n", strerror(errno));
|
|
exit(1);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
|
|
for (i = 0; i < nr_cpus; i++)
|
|
for (i = 0; i < nr_cpus; i++)
|
|
- values[i] = i + 100;
|
|
|
|
|
|
+ bpf_percpu(values, i) = i + 100;
|
|
|
|
|
|
key = 1;
|
|
key = 1;
|
|
/* Insert key=1 element. */
|
|
/* Insert key=1 element. */
|
|
assert(bpf_map_update_elem(fd, &key, values, BPF_ANY) == 0);
|
|
assert(bpf_map_update_elem(fd, &key, values, BPF_ANY) == 0);
|
|
|
|
|
|
- values[0] = 0;
|
|
|
|
|
|
+ bpf_percpu(values, 0) = 0;
|
|
assert(bpf_map_update_elem(fd, &key, values, BPF_NOEXIST) == -1 &&
|
|
assert(bpf_map_update_elem(fd, &key, values, BPF_NOEXIST) == -1 &&
|
|
errno == EEXIST);
|
|
errno == EEXIST);
|
|
|
|
|
|
/* Check that key=1 can be found. */
|
|
/* Check that key=1 can be found. */
|
|
- assert(bpf_map_lookup_elem(fd, &key, values) == 0 && values[0] == 100);
|
|
|
|
|
|
+ assert(bpf_map_lookup_elem(fd, &key, values) == 0 &&
|
|
|
|
+ bpf_percpu(values, 0) == 100);
|
|
|
|
|
|
key = 0;
|
|
key = 0;
|
|
/* Check that key=0 is also found and zero initialized. */
|
|
/* Check that key=0 is also found and zero initialized. */
|
|
assert(bpf_map_lookup_elem(fd, &key, values) == 0 &&
|
|
assert(bpf_map_lookup_elem(fd, &key, values) == 0 &&
|
|
- values[0] == 0 && values[nr_cpus - 1] == 0);
|
|
|
|
|
|
+ bpf_percpu(values, 0) == 0 &&
|
|
|
|
+ bpf_percpu(values, nr_cpus - 1) == 0);
|
|
|
|
|
|
/* Check that key=2 cannot be inserted due to max_entries limit. */
|
|
/* Check that key=2 cannot be inserted due to max_entries limit. */
|
|
key = 2;
|
|
key = 2;
|
|
@@ -353,15 +356,15 @@ static void test_arraymap_percpu(int task, void *data)
|
|
static void test_arraymap_percpu_many_keys(void)
|
|
static void test_arraymap_percpu_many_keys(void)
|
|
{
|
|
{
|
|
unsigned int nr_cpus = bpf_num_possible_cpus();
|
|
unsigned int nr_cpus = bpf_num_possible_cpus();
|
|
|
|
+ BPF_DECLARE_PERCPU(long, values);
|
|
/* nr_keys is not too large otherwise the test stresses percpu
|
|
/* nr_keys is not too large otherwise the test stresses percpu
|
|
* allocator more than anything else
|
|
* allocator more than anything else
|
|
*/
|
|
*/
|
|
unsigned int nr_keys = 2000;
|
|
unsigned int nr_keys = 2000;
|
|
- long long values[nr_cpus];
|
|
|
|
int key, fd, i;
|
|
int key, fd, i;
|
|
|
|
|
|
fd = bpf_create_map(BPF_MAP_TYPE_PERCPU_ARRAY, sizeof(key),
|
|
fd = bpf_create_map(BPF_MAP_TYPE_PERCPU_ARRAY, sizeof(key),
|
|
- sizeof(values[0]), nr_keys, 0);
|
|
|
|
|
|
+ sizeof(bpf_percpu(values, 0)), nr_keys, 0);
|
|
if (fd < 0) {
|
|
if (fd < 0) {
|
|
printf("Failed to create per-cpu arraymap '%s'!\n",
|
|
printf("Failed to create per-cpu arraymap '%s'!\n",
|
|
strerror(errno));
|
|
strerror(errno));
|
|
@@ -369,19 +372,19 @@ static void test_arraymap_percpu_many_keys(void)
|
|
}
|
|
}
|
|
|
|
|
|
for (i = 0; i < nr_cpus; i++)
|
|
for (i = 0; i < nr_cpus; i++)
|
|
- values[i] = i + 10;
|
|
|
|
|
|
+ bpf_percpu(values, i) = i + 10;
|
|
|
|
|
|
for (key = 0; key < nr_keys; key++)
|
|
for (key = 0; key < nr_keys; key++)
|
|
assert(bpf_map_update_elem(fd, &key, values, BPF_ANY) == 0);
|
|
assert(bpf_map_update_elem(fd, &key, values, BPF_ANY) == 0);
|
|
|
|
|
|
for (key = 0; key < nr_keys; key++) {
|
|
for (key = 0; key < nr_keys; key++) {
|
|
for (i = 0; i < nr_cpus; i++)
|
|
for (i = 0; i < nr_cpus; i++)
|
|
- values[i] = 0;
|
|
|
|
|
|
+ bpf_percpu(values, i) = 0;
|
|
|
|
|
|
assert(bpf_map_lookup_elem(fd, &key, values) == 0);
|
|
assert(bpf_map_lookup_elem(fd, &key, values) == 0);
|
|
|
|
|
|
for (i = 0; i < nr_cpus; i++)
|
|
for (i = 0; i < nr_cpus; i++)
|
|
- assert(values[i] == i + 10);
|
|
|
|
|
|
+ assert(bpf_percpu(values, i) == i + 10);
|
|
}
|
|
}
|
|
|
|
|
|
close(fd);
|
|
close(fd);
|