test/pmd_perf: declare variables as static
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Fri, 19 Jan 2018 14:37:13 +0000 (14:37 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 1 Feb 2018 00:07:36 +0000 (01:07 +0100)
Some variables in the PMD perf test were declared as global,
but they are only used in this test, so they should actually
be declared as static.

Fixes: 002ade70e933 ("app/test: measure cycles per packet in Rx/Tx")

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
test/test/test_pmd_perf.c

index ee148bc..911dd76 100644 (file)
@@ -292,10 +292,10 @@ alloc_lcore(uint16_t socketid)
        return (uint16_t)-1;
 }
 
-volatile uint64_t stop;
-uint64_t count;
-uint64_t drop;
-uint64_t idle;
+static volatile uint64_t stop;
+static uint64_t count;
+static uint64_t drop;
+static uint64_t idle;
 
 static void
 reset_count(void)
@@ -528,7 +528,7 @@ main_loop(__rte_unused void *args)
        return 0;
 }
 
-rte_atomic64_t start;
+static rte_atomic64_t start;
 
 static inline int
 poll_burst(void *args)