Re: [dpdk-dev] [PATCH v4 1/5] lib/ethdev: support for inline IPsec events

2018-04-20 Thread Stephen Hemminger
On Thu, 19 Apr 2018 14:45:01 +0530 Anoob Joseph wrote: > > +/** > >* The eth device event type for interrupt, and maybe others in the > > future. > >*/ > > enum rte_eth_event_type { > > @@ -2446,6 +2486,7 @@ enum rte_eth_event_type { > > RTE_ETH_EVENT_INTR_RESET, > >

Re: [dpdk-dev] [PATCH v4 1/5] lib/ethdev: support for inline IPsec events

2018-04-19 Thread Thomas Monjalon
11/04/2018 08:40, Anoob Joseph: > Adding support for IPsec events in rte_eth_event framework. In inline > IPsec offload, the per packet protocol defined variables, like ESN, > would be managed by PMD. In such cases, PMD would need IPsec events > to notify application about various conditions like,

Re: [dpdk-dev] [PATCH v4 1/5] lib/ethdev: support for inline IPsec events

2018-04-19 Thread Anoob Joseph
Hi Thomas, Are these changes fine? Can you review the changes and let me know if you have more comments. Thanks, Anoob On 11/04/18 12:10, Anoob Joseph wrote: Adding support for IPsec events in rte_eth_event framework. In inline IPsec offload, the per packet protocol defined variables, like

[dpdk-dev] [PATCH v4 1/5] lib/ethdev: support for inline IPsec events

2018-04-10 Thread Anoob Joseph
Adding support for IPsec events in rte_eth_event framework. In inline IPsec offload, the per packet protocol defined variables, like ESN, would be managed by PMD. In such cases, PMD would need IPsec events to notify application about various conditions like, ESN overflow. Signed-off-by: Anoob Jose