1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2019 Intel Corporation
*/
#include <string.h>
#include <rte_atomic.h>
#include <rte_lcore.h>
#include <rte_malloc.h>
#include <rte_random.h>
#include <rte_stack.h>
#include "test.h"
#define STACK_SIZE 4096
#define MAX_BULK 32
static int
test_stack_push_pop(struct rte_stack *s, void **obj_table, unsigned int bulk_sz)
{
unsigned int i, ret;
void **popped_objs;
popped_objs = rte_calloc(NULL, STACK_SIZE, sizeof(void *), 0);
if (popped_objs == NULL) {
printf("[%s():%u] failed to calloc %zu bytes\n",
__func__, __LINE__, STACK_SIZE * sizeof(void *));
return -1;
}
for (i = 0; i < STACK_SIZE; i += bulk_sz) {
ret = rte_stack_push(s, &obj_table[i], bulk_sz);
if (ret != bulk_sz) {
printf("[%s():%u] push returned: %d (expected %u)\n",
__func__, __LINE__, ret, bulk_sz);
rte_free(popped_objs);
return -1;
}
if (rte_stack_count(s) != i + bulk_sz) {
printf("[%s():%u] stack count: %u (expected %u)\n",
__func__, __LINE__, rte_stack_count(s),
i + bulk_sz);
rte_free(popped_objs);
return -1;
}
if (rte_stack_free_count(s) != STACK_SIZE - i - bulk_sz) {
printf("[%s():%u] stack free count: %u (expected %u)\n",
__func__, __LINE__, rte_stack_count(s),
STACK_SIZE - i - bulk_sz);
rte_free(popped_objs);
return -1;
}
}
for (i = 0; i < STACK_SIZE; i += bulk_sz) {
ret = rte_stack_pop(s, &popped_objs[i], bulk_sz);
if (ret != bulk_sz) {
printf("[%s():%u] pop returned: %d (expected %u)\n",
__func__, __LINE__, ret, bulk_sz);
rte_free(popped_objs);
return -1;
}
if (rte_stack_count(s) != STACK_SIZE - i - bulk_sz) {
printf("[%s():%u] stack count: %u (expected %u)\n",
__func__, __LINE__, rte_stack_count(s),
STACK_SIZE - i - bulk_sz);
rte_free(popped_objs);
return -1;
}
if (rte_stack_free_count(s) != i + bulk_sz) {
printf("[%s():%u] stack free count: %u (expected %u)\n",
__func__, __LINE__, rte_stack_count(s),
i + bulk_sz);
rte_free(popped_objs);
return -1;
}
}
for (i = 0; i < STACK_SIZE; i++) {
if (obj_table[i] != popped_objs[STACK_SIZE - i - 1]) {
printf("[%s():%u] Incorrect value %p at index 0x%x\n",
__func__, __LINE__,
popped_objs[STACK_SIZE - i - 1], i);
rte_free(popped_objs);
return -1;
}
}
rte_free(popped_objs);
return 0;
}
static int
test_stack_basic(uint32_t flags)
{
struct rte_stack *s = NULL;
void **obj_table = NULL;
int i, ret = -1;
obj_table = rte_calloc(NULL, STACK_SIZE, sizeof(void *), 0);
if (obj_table == NULL) {
printf("[%s():%u] failed to calloc %zu bytes\n",
__func__, __LINE__, STACK_SIZE * sizeof(void *));
goto fail_test;
}
for (i = 0; i < STACK_SIZE; i++)
obj_table[i] = (void *)(uintptr_t)i;
s = rte_stack_create(__func__, STACK_SIZE, rte_socket_id(), flags);
if (s == NULL) {
printf("[%s():%u] failed to create a stack\n",
__func__, __LINE__);
goto fail_test;
}
if (rte_stack_lookup(__func__) != s) {
printf("[%s():%u] failed to lookup a stack\n",
__func__, __LINE__);
goto fail_test;
}
if (rte_stack_count(s) != 0) {
printf("[%s():%u] stack count: %u (expected 0)\n",
__func__, __LINE__, rte_stack_count(s));
goto fail_test;
}
if (rte_stack_free_count(s) != STACK_SIZE) {
printf("[%s():%u] stack free count: %u (expected %u)\n",
__func__, __LINE__, rte_stack_count(s), STACK_SIZE);
goto fail_test;
}
ret = test_stack_push_pop(s, obj_table, 1);
if (ret) {
printf("[%s():%u] Single object push/pop failed\n",
__func__, __LINE__);
goto fail_test;
}
ret = test_stack_push_pop(s, obj_table, MAX_BULK);
if (ret) {
printf("[%s():%u] Bulk object push/pop failed\n",
__func__, __LINE__);
goto fail_test;
}
ret = rte_stack_push(s, obj_table, 2 * STACK_SIZE);
if (ret != 0) {
printf("[%s():%u] Excess objects push succeeded\n",
__func__, __LINE__);
goto fail_test;
}
ret = rte_stack_pop(s, obj_table, 1);
if (ret != 0) {
printf("[%s():%u] Empty stack pop succeeded\n",
__func__, __LINE__);
goto fail_test;
}
ret = 0;
fail_test:
rte_stack_free(s);
rte_free(obj_table);
return ret;
}
static int
test_stack_name_reuse(uint32_t flags)
{
struct rte_stack *s[2];
s[0] = rte_stack_create("test", STACK_SIZE, rte_socket_id(), flags);
if (s[0] == NULL) {
printf("[%s():%u] Failed to create a stack\n",
__func__, __LINE__);
return -1;
}
s[1] = rte_stack_create("test", STACK_SIZE, rte_socket_id(), flags);
if (s[1] != NULL) {
printf("[%s():%u] Failed to detect re-used name\n",
__func__, __LINE__);
return -1;
}
rte_stack_free(s[0]);
return 0;
}
static int
test_stack_name_length(uint32_t flags)
{
char name[RTE_STACK_NAMESIZE + 1];
struct rte_stack *s;
memset(name, 's', sizeof(name));
name[RTE_STACK_NAMESIZE] = '\0';
s = rte_stack_create(name, STACK_SIZE, rte_socket_id(), flags);
if (s != NULL) {
printf("[%s():%u] Failed to prevent long name\n",
__func__, __LINE__);
return -1;
}
if (rte_errno != ENAMETOOLONG) {
printf("[%s():%u] rte_stack failed to set correct errno on failed lookup\n",
__func__, __LINE__);
return -1;
}
return 0;
}
static int
test_lookup_null(void)
{
struct rte_stack *s = rte_stack_lookup("stack_not_found");
if (s != NULL) {
printf("[%s():%u] rte_stack found a non-existent stack\n",
__func__, __LINE__);
return -1;
}
if (rte_errno != ENOENT) {
printf("[%s():%u] rte_stack failed to set correct errno on failed lookup\n",
__func__, __LINE__);
return -1;
}
s = rte_stack_lookup(NULL);
if (s != NULL) {
printf("[%s():%u] rte_stack found a non-existent stack\n",
__func__, __LINE__);
return -1;
}
if (rte_errno != EINVAL) {
printf("[%s():%u] rte_stack failed to set correct errno on failed lookup\n",
__func__, __LINE__);
return -1;
}
return 0;
}
static int
test_free_null(void)
{
/* Check whether the library proper handles a NULL pointer */
rte_stack_free(NULL);
return 0;
}
#define NUM_ITERS_PER_THREAD 100000
struct test_args {
struct rte_stack *s;
rte_atomic64_t *sz;
};
static int
stack_thread_push_pop(void *args)
{
struct test_args *t = args;
void **obj_table;
int i;
obj_table = rte_calloc(NULL, STACK_SIZE, sizeof(void *), 0);
if (obj_table == NULL) {
printf("[%s():%u] failed to calloc %zu bytes\n",
__func__, __LINE__, STACK_SIZE * sizeof(void *));
return -1;
}
for (i = 0; i < NUM_ITERS_PER_THREAD; i++) {
unsigned int success, num;
/* Reserve up to min(MAX_BULK, available slots) stack entries,
* then push and pop those stack entries.
*/
do {
uint64_t sz = rte_atomic64_read(t->sz);
volatile uint64_t *sz_addr;
sz_addr = (volatile uint64_t *)t->sz;
num = RTE_MIN(rte_rand() % MAX_BULK, STACK_SIZE - sz);
success = rte_atomic64_cmpset(sz_addr, sz, sz + num);
} while (success == 0);
if (rte_stack_push(t->s, obj_table, num) != num) {
printf("[%s():%u] Failed to push %u pointers\n",
__func__, __LINE__, num);
rte_free(obj_table);
return -1;
}
if (rte_stack_pop(t->s, obj_table, num) != num) {
printf("[%s():%u] Failed to pop %u pointers\n",
__func__, __LINE__, num);
rte_free(obj_table);
return -1;
}
rte_atomic64_sub(t->sz, num);
}
rte_free(obj_table);
return 0;
}
static int
test_stack_multithreaded(uint32_t flags)
{
struct test_args *args;
unsigned int lcore_id;
struct rte_stack *s;
rte_atomic64_t size;
if (rte_lcore_count() < 2) {
printf("Not enough cores for test_stack_multithreaded, expecting at least 2\n");
return TEST_SKIPPED;
}
printf("[%s():%u] Running with %u lcores\n",
__func__, __LINE__, rte_lcore_count());
args = rte_malloc(NULL, sizeof(struct test_args) * RTE_MAX_LCORE, 0);
if (args == NULL) {
printf("[%s():%u] failed to malloc %zu bytes\n",
__func__, __LINE__,
sizeof(struct test_args) * RTE_MAX_LCORE);
return -1;
}
s = rte_stack_create("test", STACK_SIZE, rte_socket_id(), flags);
if (s == NULL) {
printf("[%s():%u] Failed to create a stack\n",
__func__, __LINE__);
rte_free(args);
return -1;
}
rte_atomic64_init(&size);
RTE_LCORE_FOREACH_SLAVE(lcore_id) {
args[lcore_id].s = s;
args[lcore_id].sz = &size;
if (rte_eal_remote_launch(stack_thread_push_pop,
&args[lcore_id], lcore_id))
rte_panic("Failed to launch lcore %d\n", lcore_id);
}
lcore_id = rte_lcore_id();
args[lcore_id].s = s;
args[lcore_id].sz = &size;
stack_thread_push_pop(&args[lcore_id]);
rte_eal_mp_wait_lcore();
rte_stack_free(s);
rte_free(args);
return 0;
}
static int
__test_stack(uint32_t flags)
{
if (test_stack_basic(flags) < 0)
return -1;
if (test_lookup_null() < 0)
return -1;
if (test_free_null() < 0)
return -1;
if (test_stack_name_reuse(flags) < 0)
return -1;
if (test_stack_name_length(flags) < 0)
return -1;
if (test_stack_multithreaded(flags) < 0)
return -1;
return 0;
}
static int
test_stack(void)
{
return __test_stack(0);
}
static int
test_lf_stack(void)
{
return __test_stack(RTE_STACK_F_LF);
}
REGISTER_TEST_COMMAND(stack_autotest, test_stack);
REGISTER_TEST_COMMAND(stack_lf_autotest, test_lf_stack);
|