From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nikhil Rao Subject: [PATCH 2/2] test/event: change ethernet port ids to be 16 bit Date: Wed, 5 Sep 2018 17:51:18 +0530 Message-ID: <1536150078-89772-2-git-send-email-nikhil.rao@intel.com> References: <1536150078-89772-1-git-send-email-nikhil.rao@intel.com> Cc: dev@dpdk.org, Nikhil Rao , stable@dpdk.org To: jerin.jacob@caviumnetworks.com Return-path: In-Reply-To: <1536150078-89772-1-git-send-email-nikhil.rao@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Update the event rx adapter test to use 16 bit ethernet port ids. Fixes: c2189c907dd1 ("eventdev: make ethdev port identifiers 16-bit") Cc: stable@dpdk.org Signed-off-by: Nikhil Rao --- test/test/test_event_eth_rx_adapter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test/test_event_eth_rx_adapter.c b/test/test/test_event_eth_rx_adapter.c index 2337e54..1ce3e6f 100644 --- a/test/test/test_event_eth_rx_adapter.c +++ b/test/test/test_event_eth_rx_adapter.c @@ -32,7 +32,7 @@ struct event_eth_rx_adapter_test_params { static struct event_eth_rx_adapter_test_params default_params; static inline int -port_init_common(uint8_t port, const struct rte_eth_conf *port_conf, +port_init_common(uint16_t port, const struct rte_eth_conf *port_conf, struct rte_mempool *mp) { const uint16_t rx_ring_size = 512, tx_ring_size = 512; @@ -94,7 +94,7 @@ struct event_eth_rx_adapter_test_params { } static inline int -port_init_rx_intr(uint8_t port, struct rte_mempool *mp) +port_init_rx_intr(uint16_t port, struct rte_mempool *mp) { static const struct rte_eth_conf port_conf_default = { .rxmode = { @@ -110,7 +110,7 @@ struct event_eth_rx_adapter_test_params { } static inline int -port_init(uint8_t port, struct rte_mempool *mp) +port_init(uint16_t port, struct rte_mempool *mp) { static const struct rte_eth_conf port_conf_default = { .rxmode = { -- 1.8.3.1