Re: [dpdk-dev] [PATCH] net/null: fix multi-process rx and tx

2019-10-03 Thread Yasufumi Ogawa
On 2019/10/02 1:00, Ferruh Yigit wrote: On 9/29/2019 3:41 AM, Yasufumi Ogawa wrote: Packet processing in secondary process cannot work because rx_pkt_burst and tx_pkt_burst in eth_dev are not initialized while probing device. This patch is to the initialization. Signed-off-by: Yasufumi Ogawa -

Re: [dpdk-dev] [PATCH] net/null: fix multi-process rx and tx

2019-10-01 Thread Ferruh Yigit
On 10/1/2019 5:00 PM, Ferruh Yigit wrote: > On 9/29/2019 3:41 AM, Yasufumi Ogawa wrote: >> Packet processing in secondary process cannot work because rx_pkt_burst >> and tx_pkt_burst in eth_dev are not initialized while probing device. >> This patch is to the initialization. >> >> Signed-off-by: Ya

Re: [dpdk-dev] [PATCH] net/null: fix multi-process rx and tx

2019-10-01 Thread Ferruh Yigit
On 9/29/2019 3:41 AM, Yasufumi Ogawa wrote: > Packet processing in secondary process cannot work because rx_pkt_burst > and tx_pkt_burst in eth_dev are not initialized while probing device. > This patch is to the initialization. > > Signed-off-by: Yasufumi Ogawa > --- > drivers/net/null/rte_eth_

[dpdk-dev] [PATCH] net/null: fix multi-process rx and tx

2019-09-28 Thread Yasufumi Ogawa
Packet processing in secondary process cannot work because rx_pkt_burst and tx_pkt_burst in eth_dev are not initialized while probing device. This patch is to the initialization. Signed-off-by: Yasufumi Ogawa --- drivers/net/null/rte_eth_null.c | 7 +++ 1 file changed, 7 insertions(+) diff