Message ID | 20240617161048.3480877-1-sergey.portnoy@intel.com |
---|---|
State | Accepted |
Commit | 7b3058eb3f3b04e534d6cda6820ef8c7cf519a79 |
Headers | show |
Series | [v4] crypto: tcrypt - add skcipher speed for given alg | expand |
On Mon, Jun 17, 2024 at 05:08:29PM +0100, Sergey Portnoy wrote: > Allow to run skcipher speed for given algorithm. > Case 600 is modified to cover ENCRYPT and DECRYPT > directions. > > Example: > modprobe tcrypt mode=600 alg="qat_aes_xts" klen=32 > > If succeed, the performance numbers will be printed in dmesg: > testing speed of multibuffer qat_aes_xts (qat_aes_xts) encryption > test 0 (256 bit key, 16 byte blocks): 1 operation in 14596 cycles (16 bytes) > ... > test 6 (256 bit key, 4096 byte blocks): 1 operation in 8053 cycles (4096 bytes) > > Signed-off-by: Sergey Portnoy <sergey.portnoy@intel.com> > --- > > v3 -> v4 > > - moving speed_template declaration to case section. > > crypto/tcrypt.c | 9 +++++++++ > 1 file changed, 9 insertions(+) Patch applied. Thanks.
diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index 8aea416f6480..e9e7dceb606e 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -2613,6 +2613,15 @@ static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb) break; case 600: + if (alg) { + u8 speed_template[2] = {klen, 0}; + test_mb_skcipher_speed(alg, ENCRYPT, sec, NULL, 0, + speed_template, num_mb); + test_mb_skcipher_speed(alg, DECRYPT, sec, NULL, 0, + speed_template, num_mb); + break; + } + test_mb_skcipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, speed_template_16_24_32, num_mb); test_mb_skcipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
Allow to run skcipher speed for given algorithm. Case 600 is modified to cover ENCRYPT and DECRYPT directions. Example: modprobe tcrypt mode=600 alg="qat_aes_xts" klen=32 If succeed, the performance numbers will be printed in dmesg: testing speed of multibuffer qat_aes_xts (qat_aes_xts) encryption test 0 (256 bit key, 16 byte blocks): 1 operation in 14596 cycles (16 bytes) ... test 6 (256 bit key, 4096 byte blocks): 1 operation in 8053 cycles (4096 bytes) Signed-off-by: Sergey Portnoy <sergey.portnoy@intel.com> --- v3 -> v4 - moving speed_template declaration to case section. crypto/tcrypt.c | 9 +++++++++ 1 file changed, 9 insertions(+)