X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Ftest%2Ftest_memory.c;fp=test%2Ftest%2Ftest_memory.c;h=b96bca771a543a2350c6ee5d0af1b1095db751d8;hb=b63264c8342e6a1b6971c79550d2af2024b6a4de;hp=972321f1bde7ff50d54c1fd2cd0230a0c14ca445;hpb=ca33590b6af032bff57d9cc70455660466a654b2;p=deb_dpdk.git diff --git a/test/test/test_memory.c b/test/test/test_memory.c index 972321f1..b96bca77 100644 --- a/test/test/test_memory.c +++ b/test/test/test_memory.c @@ -5,8 +5,11 @@ #include #include +#include +#include #include #include +#include #include "test.h" @@ -22,13 +25,22 @@ * - Try to read all memory; it should not segfault. */ +static int +check_mem(const struct rte_memseg_list *msl __rte_unused, + const struct rte_memseg *ms, void *arg __rte_unused) +{ + volatile uint8_t *mem = (volatile uint8_t *) ms->addr; + size_t i, max = ms->len; + + for (i = 0; i < max; i++, mem++) + *mem; + return 0; +} + static int test_memory(void) { uint64_t s; - unsigned i; - size_t j; - const struct rte_memseg *mem; /* * dump the mapped memory: the python-expect script checks @@ -45,14 +57,7 @@ test_memory(void) } /* try to read memory (should not segfault) */ - mem = rte_eal_get_physmem_layout(); - for (i = 0; i < RTE_MAX_MEMSEG && mem[i].addr != NULL ; i++) { - - /* check memory */ - for (j = 0; j