app/testpmd: fix metering and policing command for RFC4115
[dpdk.git] / app / test / test_stack.c
index efd4738..bc38961 100644 (file)
@@ -4,7 +4,6 @@
 
 #include <string.h>
 
-#include <rte_atomic.h>
 #include <rte_lcore.h>
 #include <rte_malloc.h>
 #include <rte_random.h>
@@ -273,7 +272,6 @@ test_free_null(void)
 
 struct test_args {
        struct rte_stack *s;
-       rte_atomic64_t *sz;
 };
 
 static struct test_args thread_test_args;
@@ -285,21 +283,9 @@ stack_thread_push_pop(__rte_unused void *args)
        int i;
 
        for (i = 0; i < NUM_ITERS_PER_THREAD; i++) {
-               unsigned int success, num;
+               unsigned int 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(thread_test_args.sz);
-                       volatile uint64_t *sz_addr;
-
-                       sz_addr = (volatile uint64_t *)thread_test_args.sz;
-
-                       num = RTE_MIN(rte_rand() % MAX_BULK, STACK_SIZE - sz);
-
-                       success = rte_atomic64_cmpset(sz_addr, sz, sz + num);
-               } while (success == 0);
+               num = rte_rand() % MAX_BULK;
 
                if (rte_stack_push(thread_test_args.s, obj_table, num) != num) {
                        printf("[%s():%u] Failed to push %u pointers\n",
@@ -312,8 +298,6 @@ stack_thread_push_pop(__rte_unused void *args)
                               __func__, __LINE__, num);
                        return -1;
                }
-
-               rte_atomic64_sub(thread_test_args.sz, num);
        }
 
        return 0;
@@ -322,8 +306,9 @@ stack_thread_push_pop(__rte_unused void *args)
 static int
 test_stack_multithreaded(uint32_t flags)
 {
+       unsigned int lcore_id;
        struct rte_stack *s;
-       rte_atomic64_t size;
+       int result = 0;
 
        if (rte_lcore_count() < 2) {
                printf("Not enough cores for test_stack_multithreaded, expecting at least 2\n");
@@ -333,23 +318,25 @@ test_stack_multithreaded(uint32_t flags)
        printf("[%s():%u] Running with %u lcores\n",
               __func__, __LINE__, rte_lcore_count());
 
-       s = rte_stack_create("test", STACK_SIZE, rte_socket_id(), flags);
+       s = rte_stack_create("test", MAX_BULK * rte_lcore_count(), rte_socket_id(), flags);
        if (s == NULL) {
                printf("[%s():%u] Failed to create a stack\n",
                       __func__, __LINE__);
                return -1;
        }
 
-       rte_atomic64_init(&size);
        thread_test_args.s = s;
-       thread_test_args.sz = &size;
 
-       if (rte_eal_mp_remote_launch(stack_thread_push_pop, NULL, CALL_MASTER))
+       if (rte_eal_mp_remote_launch(stack_thread_push_pop, NULL, CALL_MAIN))
                rte_panic("Failed to launch tests\n");
-       rte_eal_mp_wait_lcore();
+
+       RTE_LCORE_FOREACH(lcore_id) {
+               if (rte_eal_wait_lcore(lcore_id) < 0)
+                       result = -1;
+       }
 
        rte_stack_free(s);
-       return 0;
+       return result;
 }
 
 static int
@@ -385,7 +372,11 @@ test_stack(void)
 static int
 test_lf_stack(void)
 {
+#if defined(RTE_STACK_LF_SUPPORTED)
        return __test_stack(RTE_STACK_F_LF);
+#else
+       return TEST_SKIPPED;
+#endif
 }
 
 REGISTER_TEST_COMMAND(stack_autotest, test_stack);