[dpdk-dev] [PATCH 2/4] eventdev: add caps API and PMD callbacks for eth Tx adapter

2018-07-16 Thread Pavan Nikhilesh
livier.m...@6wind.com > > Cc: dev@dpdk.org > > Subject: [pbhagavat...@caviumnetworks.com: Re: [dpdk-dev] [PATCH 2/4] > > eventdev: add caps API and PMD callbacks for eth Tx adapter] > > > > Hi Nikhil, > > > > On Mon, Jul 16, 2018 at 11:25:45AM +0530, Rao, Ni

Re: [dpdk-dev] [PATCH 2/4] eventdev: add caps API and PMD callbacks for eth Tx adapter

2018-07-15 Thread Rao, Nikhil
On 7/10/2018 4:26 PM, Pavan Nikhilesh wrote: +int __rte_experimental +rte_event_eth_tx_adapter_caps_get(uint8_t dev_id, uint32_t *caps) +{ The caps get API needs to be similar to rx adapter caps get i.e. it needs to have the eth_port_id as a parameter so that the underlying event dev driver can

Re: [dpdk-dev] [PATCH 2/4] eventdev: add caps API and PMD callbacks for eth Tx adapter

2018-07-10 Thread Pavan Nikhilesh
Hi Nikhil, On Fri, Jul 06, 2018 at 12:12:07PM +0530, Nikhil Rao wrote: > The caps API allows the application to query if the transmit > stage is implemented in the eventdev PMD or uses the common > rte_service function. The PMD callbacks support the > eventdev PMD implementation of the adapter. >

[dpdk-dev] [PATCH 2/4] eventdev: add caps API and PMD callbacks for eth Tx adapter

2018-07-05 Thread Nikhil Rao
The caps API allows the application to query if the transmit stage is implemented in the eventdev PMD or uses the common rte_service function. The PMD callbacks support the eventdev PMD implementation of the adapter. Signed-off-by: Nikhil Rao --- lib/librte_eventdev/rte_eventdev.h | 30