Re: [PATCH] crypto/openssl: performance improvements
From: De Lara Guarch, Pablo <hidden>
Date: 2017-08-15 07:27:03
Hi,
-----Original Message----- From: Akhil Goyal [mailto:akhil.goyal@nxp.com] Sent: Tuesday, August 15, 2017 7:45 AM To: De Lara Guarch, Pablo <redacted>; dev@dpdk.org; Doherty, Declan [off-list ref] Cc: hemant.agrawal@nxp.com Subject: Re: [PATCH] crypto/openssl: performance improvements On 8/14/2017 7:47 PM, De Lara Guarch, Pablo wrote:quoted
Hi Akhil,quoted
-----Original Message----- From: Akhil Goyal [mailto:akhil.goyal@nxp.com] Sent: Friday, July 28, 2017 12:08 PM To: dev@dpdk.org; Doherty, Declan <redacted> Cc: De Lara Guarch, Pablo <redacted>; hemant.agrawal@nxp.com; Akhil Goyal [off-list ref] Subject: [PATCH] crypto/openssl: performance improvements key and algo are added in the openssl ctx during session initialization instead of adding it for each packet. Also in case of HMAC the openssl APIs HMAC_XXX give better performance for all HMAC cases. Signed-off-by: Akhil Goyal <redacted>Thanks for the patch, nice optimization! Could you split this into two patches, as you are doing two differentthings here?quoted
One for the first sentence and another one for the second sentence. Also, as you do that, could you rename the title to be more explicit? Like: crypto/openssl: initialize cipher key at session init Finally, I was looking at GCM, and I think it could benefit from this. I will send a separate patch for it, unless you want to integrate it in thispatchset yourself.quoted
Ok I would split the patches. For GCM I will try to incorporate in this patchset, if I get some performance improvement, or I would send a different patch later if some issue comes.
Thanks Ahkil. Since I am working on AES-CCM for this PMD, I have the change already done. I have seen performance improvements, but it is not as straight forward as the cipher algorithms, because GMAC is also affected, which is in a different code path, but requires GCM to be set.
Thanks, Akhil