]> git.droids-corp.org - dpdk.git/commitdiff
app/test: remove unused constants
authorThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 11 May 2016 06:39:09 +0000 (08:39 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 24 May 2016 15:00:56 +0000 (17:00 +0200)
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
app/test/test_lpm6.c
app/test/test_memcpy.c
app/test/test_mempool.c
app/test/test_ring.c

index 9545982d812a97396e5f487dc0194779a4dcfbce..458a10bfdc2b673a50f1fa84bf2b369aebfbfaa1 100644 (file)
@@ -113,8 +113,6 @@ rte_lpm6_test tests6[] = {
 };
 
 #define NUM_LPM6_TESTS                (sizeof(tests6)/sizeof(tests6[0]))
-#define RTE_LPM6_TBL24_NUM_ENTRIES                             (1 << 24)
-#define RTE_LPM6_LOOKUP_SUCCESS                               0x04000000
 #define MAX_DEPTH                                                    128
 #define MAX_RULES                                                1000000
 #define NUMBER_TBL8S                                           (1 << 16)
index b2bb4e0e28afc2b9826ab2ab2cb433c0a28de718..8195e209929ff1673f4c280371a3f16834c23084 100644 (file)
 #include <stdlib.h>
 
 #include <rte_common.h>
-#include <rte_cycles.h>
 #include <rte_random.h>
-#include <rte_malloc.h>
-
 #include <rte_memcpy.h>
 
 #include "test.h"
@@ -65,18 +62,6 @@ static size_t buf_sizes[TEST_VALUE_RANGE];
 #define SMALL_BUFFER_SIZE       TEST_VALUE_RANGE
 #endif /* TEST_VALUE_RANGE == 0 */
 
-
-/*
- * Arrays of this size are used for measuring uncached memory accesses by
- * picking a random location within the buffer. Make this smaller if there are
- * memory allocation errors.
- */
-#define LARGE_BUFFER_SIZE       (100 * 1024 * 1024)
-
-/* How many times to run timing loop for performance tests */
-#define TEST_ITERATIONS         1000000
-#define TEST_BATCH_SIZE         100
-
 /* Data is aligned on this many bytes (power of 2) */
 #define ALIGNMENT_UNIT          32
 
index 56bb07dfc8cdf4b9558b755697f935107c00ebb9..b586249db4fef9a3f76b85b3fe0b5d489aeca8cf 100644 (file)
@@ -71,8 +71,6 @@
  *      put them back in the pool.
  */
 
-#define N 65536
-#define TIME_S 5
 #define MEMPOOL_ELT_SIZE 2048
 #define MAX_KEEP 16
 #define MEMPOOL_SIZE ((rte_lcore_count()*(MAX_KEEP+RTE_MEMPOOL_CACHE_MAX_SIZE))-1)
index 4f8dc8ff9bef857f70c5c6ace5cbf22367854e34..9095e5976768177e8ae61b3ae45278392d79f125 100644 (file)
 
 #define RING_SIZE 4096
 #define MAX_BULK 32
-#define N 65536
-#define TIME_S 5
 
 static rte_atomic32_t synchro;