RE: [EXT] [PATCH] crypto: use single buffer for asymmetric session

2022-01-20 Thread Power, Ciara
n ; Ankur >Dwivedi ; Tejasree Kondoj >; Griffin, John ; Trahe, >Fiona ; Jain, Deepak K ; >Ray Kinsella >Subject: RE: [EXT] [PATCH] crypto: use single buffer for asymmetric session > >Hi Ciara, > >+1 to the overall approach. Few comments inline. > >Thanks, >Anoob > &g

Re: [PATCH] crypto: use single buffer for asymmetric session

2021-12-19 Thread Ray Kinsella
Ciara, One minor niggle. Ciara Power writes: > diff --git a/lib/cryptodev/version.map b/lib/cryptodev/version.map > index c50745fa8c..00b1c9ae35 100644 > --- a/lib/cryptodev/version.map > +++ b/lib/cryptodev/version.map > @@ -58,7 +58,6 @@ EXPERIMENTAL { > rte_cryptodev_asym_session_cle

RE: [EXT] [PATCH] crypto: use single buffer for asymmetric session

2021-12-13 Thread Anoob Joseph
vedi ; > Anoob Joseph ; Tejasree Kondoj > ; John Griffin ; Fiona > Trahe ; Deepak Kumar Jain > ; Ray Kinsella > Subject: [EXT] [PATCH] crypto: use single buffer for asymmetric session > > External Email > >

[PATCH] crypto: use single buffer for asymmetric session

2021-12-13 Thread Ciara Power
Rather than using a session buffer that contains pointers to private session data elsewhere, have a single session buffer. This session is created for a driver ID, and the mempool element contains space for the max session private data needed for any driver. Signed-off-by: Ciara Power --- Hiding