From 6298ec1bf8539e259595411a4af382487d32ec5c Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Thu, 27 Sep 2018 11:16:14 +0530 Subject: [PATCH] test/event: fix build for timer adapter Limit the number of objects passed to rte_mempool_put_bulk() to the size of the object table. This fix eliminates a compiler warning (array-bounds) triggered when the march command line parameter to gcc is set to nehalem. Fixes: d1f3385d0076 ("test: add event timer adapter auto-test") Cc: stable@dpdk.org Signed-off-by: Nikhil Rao Acked-by: Bruce Richardson --- test/test/test_event_timer_adapter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test/test_event_timer_adapter.c b/test/test/test_event_timer_adapter.c index 93471db1dd..a45b7d1957 100644 --- a/test/test/test_event_timer_adapter.c +++ b/test/test/test_event_timer_adapter.c @@ -792,7 +792,7 @@ _cancel_burst_thread(void *args) TEST_ASSERT_EQUAL(n, ret, "Failed to cancel complete burst of " "event timers"); rte_mempool_put_bulk(eventdev_test_mempool, (void **)ev_tim, - ret); + RTE_MIN(ret, MAX_BURST)); cancel_count += ret; } -- 2.20.1