Re: [dpdk-dev] [PATCH] eventdev: change port_id to uint16_t

2018-05-11 Thread Thomas Monjalon
10/05/2018 21:59, Ferruh Yigit: > On 5/8/2018 3:27 PM, Lei wrote: > > From: yao > > > > From 17.11, port_id is changed from uint8_t to uint16_t.But in eventdev, > > it still use the old fashion. This patch fix this issue. > > > > Signed-off-by: Lei Yao > > Acked-by: Ferruh Yigit > > This iss

Re: [dpdk-dev] [PATCH] eventdev: change port_id to uint16_t

2018-05-10 Thread Ferruh Yigit
On 5/8/2018 3:27 PM, Lei wrote: > From: yao > > From 17.11, port_id is changed from uint8_t to uint16_t.But in eventdev, > it still use the old fashion. This patch fix this issue. > > Signed-off-by: Lei Yao Acked-by: Ferruh Yigit This issue also cause build error when CONFIG_RTE_MAX_ETHPORTS

Re: [dpdk-dev] [PATCH] eventdev: change port_id to uint16_t

2018-05-10 Thread Remy Horton
Would have preferred it if the patch also changed the variable name to something a bit more descriptive (e.g. port_id, idx_port, ..). On 08/05/2018 15:27, Lei wrote: From: yao From 17.11, port_id is changed from uint8_t to uint16_t.But in eventdev, it still use the old fashion. This patch fix

[dpdk-dev] [PATCH] eventdev: change port_id to uint16_t

2018-05-07 Thread Lei
From: yao >From 17.11, port_id is changed from uint8_t to uint16_t.But in eventdev, it still use the old fashion. This patch fix this issue. Signed-off-by: Lei Yao --- lib/librte_eventdev/rte_event_eth_rx_adapter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lib