Re: [PATCH v1] eventdev/crypto_adapter: remove logically dead code

2022-02-23 Thread Jerin Jacob
> > To: Jayatheerthan, Jay ; > > jerinjac...@gmail.com; Gujjar, Abhinandan S > > ; dev@dpdk.org > > Subject: [PATCH v1] eventdev/crypto_adapter: remove logically dead code > > > > eca_cryptodev_cdev_flush() is internal function and called with valid range > > of cdevs

RE: [PATCH v1] eventdev/crypto_adapter: remove logically dead code

2022-02-23 Thread Gujjar, Abhinandan S
Acked-by: Abhinandan Gujjar > -Original Message- > From: Kundapura, Ganapati > Sent: Wednesday, February 23, 2022 1:05 PM > To: Jayatheerthan, Jay ; > jerinjac...@gmail.com; Gujjar, Abhinandan S > ; dev@dpdk.org > Subject: [PATCH v1] eventdev/crypto_adapter: remov

Re: [PATCH v1] eventdev/crypto_adapter: remove logically dead code

2022-02-23 Thread Jerin Jacob
On Wed, Feb 23, 2022 at 1:04 PM Ganapati Kundapura wrote: > > eca_cryptodev_cdev_flush() is internal function and called with > valid range of cdevs. > > crypto_cdev_info structure is allocated at adapter creation time > and retrieved from the adapter for a valid cdevs which cannot be NULL > and h

[PATCH v1] eventdev/crypto_adapter: remove logically dead code

2022-02-22 Thread Ganapati Kundapura
eca_cryptodev_cdev_flush() is internal function and called with valid range of cdevs. crypto_cdev_info structure is allocated at adapter creation time and retrieved from the adapter for a valid cdevs which cannot be NULL and hence no need for NULL check. Fixes: 2ae84b39ae7b ("eventdev/crypto: sto