/*- * BSD LICENSE * * Copyright(c) 2010-2014 Intel Corporation. All rights reserved. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * Neither the name of Intel Corporation nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "test.h" /* * Ring * ==== * * #. Basic tests: done on one core: * * - Using single producer/single consumer functions: * * - Enqueue one object, two objects, MAX_BULK objects * - Dequeue one object, two objects, MAX_BULK objects * - Check that dequeued pointers are correct * * - Using multi producers/multi consumers functions: * * - Enqueue one object, two objects, MAX_BULK objects * - Dequeue one object, two objects, MAX_BULK objects * - Check that dequeued pointers are correct * * #. Performance tests. * * Tests done in test_ring_perf.c */ #define RING_SIZE 4096 #define MAX_BULK 32 static rte_atomic32_t synchro; static struct rte_ring *r; #define TEST_RING_VERIFY(exp) \ if (!(exp)) { \ printf("error at %s:%d\tcondition " #exp " failed\n", \ __func__, __LINE__); \ rte_ring_dump(stdout, r); \ return -1; \ } #define TEST_RING_FULL_EMTPY_ITER 8 /* * helper routine for test_ring_basic */ static int test_ring_basic_full_empty(void * const src[], void *dst[]) { unsigned i, rand; const unsigned rsz = RING_SIZE - 1; printf("Basic full/empty test\n"); for (i = 0; TEST_RING_FULL_EMTPY_ITER != i; i++) { /* random shift in the ring */ rand = RTE_MAX(rte_rand() % RING_SIZE, 1UL); printf("%s: iteration %u, random shift: %u;\n", __func__, i, rand); TEST_RING_VERIFY(rte_ring_enqueue_bulk(r, src, rand, NULL) != 0); TEST_RING_VERIFY(rte_ring_dequeue_bulk(r, dst, rand, NULL) == rand); /* fill the ring */ TEST_RING_VERIFY(rte_ring_enqueue_bulk(r, src, rsz, NULL) != 0); TEST_RING_VERIFY(0 == rte_ring_free_count(r)); TEST_RING_VERIFY(rsz == rte_ring_count(r)); TEST_RING_VERIFY(rte_ring_full(r)); TEST_RING_VERIFY(0 == rte_ring_empty(r)); /* empty the ring */ TEST_RING_VERIFY(rte_ring_dequeue_bulk(r, dst, rsz, NULL) == rsz); TEST_RING_VERIFY(rsz == rte_ring_free_count(r)); TEST_RING_VERIFY(0 == rte_ring_count(r)); TEST_RING_VERIFY(0 == rte_ring_full(r)); TEST_RING_VERIFY(rte_ring_empty(r)); /* check data */ TEST_RING_VERIFY(0 == memcmp(src, dst, rsz)); rte_ring_dump(stdout, r); } return 0; } static int test_ring_basic(void) { void **src = NULL, **cur_src = NULL, **dst = NULL, **cur_dst = NULL; int ret; unsigned i, num_elems; /* alloc dummy object pointers */ src = malloc(RING_SIZE*2*sizeof(void *)); if (src == NULL) goto fail; for (i = 0; i < RING_SIZE*2 ; i++) { src[i] = (void *)(unsigned long)i; } cur_src = src; /* alloc some room for copied objects */ dst = malloc(RING_SIZE*2*sizeof(void *)); if (dst == NULL) goto fail; memset(dst, 0, RING_SIZE*2*sizeof(void *)); cur_dst = dst; printf("enqueue 1 obj\n"); ret = rte_ring_sp_enqueue_bulk(r, cur_src, 1, NULL); cur_src += 1; if (ret == 0) goto fail; printf("enqueue 2 objs\n"); ret = rte_ring_sp_enqueue_bulk(r, cur_src, 2, NULL); cur_src += 2; if (ret == 0) goto fail; printf("enqueue MAX_BULK objs\n"); ret = rte_ring_sp_enqueue_bulk(r, cur_src, MAX_BULK, NULL); cur_src += MAX_BULK; if (ret == 0) goto fail; printf("dequeue 1 obj\n"); ret = rte_ring_sc_dequeue_bulk(r, cur_dst, 1, NULL); cur_dst += 1; if (ret == 0) goto fail; printf("dequeue 2 objs\n"); ret = rte_ring_sc_dequeue_bulk(r, cur_dst, 2, NULL); cur_dst += 2; if (ret == 0) goto fail; printf("dequeue MAX_BULK objs\n"); ret = rte_ring_sc_dequeue_bulk(r, cur_dst, MAX_BULK, NULL); cur_dst += MAX_BULK; if (ret == 0) goto fail; /* check data */ if (memcmp(src, dst, cur_dst - dst)) { rte_hexdump(stdout, "src", src, cur_src - src); rte_hexdump(stdout, "dst", dst, cur_dst - dst); printf("data after dequeue is not the same\n"); goto fail; } cur_src = src; cur_dst = dst; printf("enqueue 1 obj\n"); ret = rte_ring_mp_enqueue_bulk(r, cur_src, 1, NULL); cur_src += 1; if (ret == 0) goto fail; printf("enqueue 2 objs\n"); ret = rte_ring_mp_enqueue_bulk(r, cur_src, 2, NULL); cur_src += 2; if (ret == 0) goto fail; printf("enqueue MAX_BULK objs\n"); ret = rte_ring_mp_enqueue_bulk(r, cur_src, MAX_BULK, NULL); cur_src += MAX_BULK; if (ret == 0) goto fail; printf("dequeue 1 obj\n"); ret = rte_ring_mc_dequeue_bulk(r, cur_dst, 1, NULL); cur_dst += 1; if (ret == 0) goto fail; printf("dequeue 2 objs\n"); ret = rte_ring_mc_dequeue_bulk(r, cur_dst, 2, NULL); cur_dst += 2; if (ret == 0) goto fail; printf("dequeue MAX_BULK objs\n"); ret = rte_ring_mc_dequeue_bulk(r, cur_dst, MAX_BULK, NULL); cur_dst += MAX_BULK; if (ret == 0) goto fail; /* check data */ if (memcmp(src, dst, cur_dst - dst)) { rte_hexdump(stdout, "src", src, cur_src - src); rte_hexdump(stdout, "dst", dst, cur_dst - dst); printf("data after dequeue is not the same\n"); goto fail; } cur_src = src; cur_dst = dst; printf("fill and empty the ring\n"); for (i = 0; i= rte_ring_get_size(exact_sz_ring)) { printf("%s: error, std ring (size: %u) is not smaller than exact size one (size %u)\n", __func__, rte_ring_get_size(std_ring), rte_ring_get_size(exact_sz_ring)); goto end; } /* * check that the exact_sz_ring can hold one more element than the * standard ring. (16 vs 15 elements) */ for (i = 0; i < ring_sz - 1; i++) { rte_ring_enqueue(std_ring, NULL); rte_ring_enqueue(exact_sz_ring, NULL); } if (rte_ring_enqueue(std_ring, NULL) != -ENOBUFS) { printf("%s: error, unexpected successful enqueue\n", __func__); goto end; } if (rte_ring_enqueue(exact_sz_ring, NULL) == -ENOBUFS) { printf("%s: error, enqueue failed\n", __func__); goto end; } /* check that dequeue returns the expected number of elements */ if (rte_ring_dequeue_burst(exact_sz_ring, ptr_array, RTE_DIM(ptr_array), NULL) != ring_sz) { printf("%s: error, failed to dequeue expected nb of elements\n", __func__); goto end; } /* check that the capacity function returns expected value */ if (rte_ring_get_capacity(exact_sz_ring) != ring_sz) { printf("%s: error, incorrect ring capacity reported\n", __func__); goto end; } ret = 0; /* all ok if we get here */ end: rte_ring_free(std_ring); rte_ring_free(exact_sz_ring); return ret; } static int test_ring(void) { /* some more basic operations */ if (test_ring_basic_ex() < 0) return -1; rte_atomic32_init(&synchro); if (r == NULL) r = rte_ring_create("test", RING_SIZE, SOCKET_ID_ANY, 0); if (r == NULL) return -1; /* retrieve the ring from its name */ if (rte_ring_lookup("test") != r) { printf("Cannot lookup ring from its name\n"); return -1; } /* burst operations */ if (test_ring_burst_basic() < 0) return -1; /* basic operations */ if (test_ring_basic() < 0) return -1; /* basic operations */ if ( test_create_count_odd() < 0){ printf ("Test failed to detect odd count\n"); return -1; } else printf ( "Test detected odd count\n"); if ( test_lookup_null() < 0){ printf ("Test failed to detect NULL ring lookup\n"); return -1; } else printf ( "Test detected NULL ring lookup \n"); /* test of creating ring with wrong size */ if (test_ring_creation_with_wrong_size() < 0) return -1; /* test of creation ring with an used name */ if (test_ring_creation_with_an_used_name() < 0) return -1; if (test_ring_with_exact_size() < 0) return -1; /* dump the ring status */ rte_ring_list_dump(stdout); return 0; } REGISTER_TEST_COMMAND(ring_autotest, test_ring);