Re: [PATCH] cryptodev: remove unnecessary list end

2024-10-09 Thread Ferruh Yigit
On 10/9/2024 12:24 PM, Akhil Goyal wrote: > RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END and > RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END are not used anywhere and > mostly it do not fulfil any objective. > Rather it does not allow addition of new algorithms and > new padding type as it result in ABI breakage. >

RE: [PATCH] cryptodev: remove unnecessary list end

2024-10-09 Thread Akhil Goyal
> > From: Akhil Goyal [mailto:gak...@marvell.com] > > Sent: Wednesday, 9 October 2024 13.25 > > > > RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END and > > RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END are not used anywhere and > > mostly it do not fulfil any objective. > > Rather it does not allow addition of new algo

Re: [PATCH] cryptodev: remove unnecessary list end

2024-10-09 Thread Hemant Agrawal
On 09-10-2024 16:54, Akhil Goyal wrote: RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END and RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END are not used anywhere and mostly it do not fulfil any objective. Rather it does not allow addition of new algorithms and new padding type as it result in ABI breakage. Hence, the

RE: [PATCH] cryptodev: remove unnecessary list end

2024-10-09 Thread Morten Brørup
> From: Akhil Goyal [mailto:gak...@marvell.com] > Sent: Wednesday, 9 October 2024 13.25 > > RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END and > RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END are not used anywhere and > mostly it do not fulfil any objective. > Rather it does not allow addition of new algorithms and >

[PATCH] cryptodev: remove unnecessary list end

2024-10-09 Thread Akhil Goyal
RTE_CRYPTO_ASYM_XFORM_TYPE_LIST_END and RTE_CRYPTO_RSA_PADDING_TYPE_LIST_END are not used anywhere and mostly it do not fulfil any objective. Rather it does not allow addition of new algorithms and new padding type as it result in ABI breakage. Hence, these are removed. Signed-off-by: Akhil Goyal