Re: [dpdk-dev] [PATCH v4 16/29] node: add ethdev Rx node

2020-04-10 Thread Nithin Dabilpuram
On Fri, Apr 10, 2020 at 01:05:08AM +0200, Andrzej Ostruszka wrote: > On 4/5/20 10:56 AM, jer...@marvell.com wrote: > > From: Nithin Dabilpuram > > > > Add source rte_node ethdev_rx process function and register > > it. This node is a source node that will be called periodically > > and when calle

Re: [dpdk-dev] [PATCH v4 16/29] node: add ethdev Rx node

2020-04-09 Thread Andrzej Ostruszka
On 4/5/20 10:56 AM, jer...@marvell.com wrote: > From: Nithin Dabilpuram > > Add source rte_node ethdev_rx process function and register > it. This node is a source node that will be called periodically > and when called, performs rte_eth_rx_burst() on a specific > (port, queue) pair and enqueue t

[dpdk-dev] [PATCH v4 16/29] node: add ethdev Rx node

2020-04-05 Thread jerinj
From: Nithin Dabilpuram Add source rte_node ethdev_rx process function and register it. This node is a source node that will be called periodically and when called, performs rte_eth_rx_burst() on a specific (port, queue) pair and enqueue them as stream of objects to next node. Signed-off-by: Nit