Re: [dpdk-dev] [PATCH 01/10] security: introduce CPU Crypto action type and API

2019-10-01 Thread Hemant Agrawal
Hi Konstantin, > > >>> This patch introduce new RTE_SECURITY_ACTION_TYPE_CPU_CRYPTO > > >>> action type to security library. The type represents performing > > >>> crypto operation with CPU cycles. The patch also includes a new > > >>> API to process crypto operations in bulk and the function poin

Re: [dpdk-dev] [PATCH 01/10] security: introduce CPU Crypto action type and API

2019-10-01 Thread Ananyev, Konstantin
Hi Hemant, > >>> This patch introduce new RTE_SECURITY_ACTION_TYPE_CPU_CRYPTO action type > >>> to > >>> security library. The type represents performing crypto operation with CPU > >>> cycles. The patch also includes a new API to process crypto operations in > >>> bulk and the function pointers

Re: [dpdk-dev] [PATCH 01/10] security: introduce CPU Crypto action type and API

2019-09-30 Thread Hemant Agrawal
Hi Konstantin, n 06-Sep-19 6:43 PM, Fan Zhang wrote: >>> This patch introduce new RTE_SECURITY_ACTION_TYPE_CPU_CRYPTO action type to >>> security library. The type represents performing crypto operation with CPU >>> cycles. The patch also includes a new API to process crypto operations in >>> bulk

Re: [dpdk-dev] [PATCH 01/10] security: introduce CPU Crypto action type and API

2019-09-29 Thread Ananyev, Konstantin
Hi Hemant, > > On 06-Sep-19 6:43 PM, Fan Zhang wrote: > > This patch introduce new RTE_SECURITY_ACTION_TYPE_CPU_CRYPTO action type to > > security library. The type represents performing crypto operation with CPU > > cycles. The patch also includes a new API to process crypto operations in > > bu

Re: [dpdk-dev] [PATCH 01/10] security: introduce CPU Crypto action type and API

2019-09-28 Thread Hemant Agrawal
Some comments inline. On 06-Sep-19 6:43 PM, Fan Zhang wrote: > This patch introduce new RTE_SECURITY_ACTION_TYPE_CPU_CRYPTO action type to > security library. The type represents performing crypto operation with CPU > cycles. The patch also includes a new API to process crypto operations in > bulk

Re: [dpdk-dev] [PATCH 01/10] security: introduce CPU Crypto action type and API

2019-09-18 Thread Ananyev, Konstantin
> +/** > + * Security vector structure, contains pointer to vector array and the length > + * of the array > + */ > +struct rte_security_vec { > + struct iovec *vec; > + uint32_t num; > +}; > + > +/** > + * Processing bulk crypto workload with CPU > + * > + * @paraminstancesecur

[dpdk-dev] [PATCH 01/10] security: introduce CPU Crypto action type and API

2019-09-06 Thread Fan Zhang
This patch introduce new RTE_SECURITY_ACTION_TYPE_CPU_CRYPTO action type to security library. The type represents performing crypto operation with CPU cycles. The patch also includes a new API to process crypto operations in bulk and the function pointers for PMDs. Signed-off-by: Fan Zhang --- l