RE: [PATCH][RFC] crypto: tcrypt - Ahash tests changed to run in parallel.

2013-01-09 Thread Garg Vakul-B16394
Hello Kim > -Original Message- > From: Phillips Kim-R1AAHA > Sent: Thursday, January 10, 2013 3:16 AM > To: Garg Vakul-B16394 > Cc: Jussi Kivilinna; linux-crypto@vger.kernel.org > Subject: Re: [PATCH][RFC] crypto: tcrypt - Ahash tests changed to run in > parallel. > > On Sat, 5 Jan 2013

[PATCH v2] crypto: s5p-sss - Use devm_clk_get()

2013-01-09 Thread Jingoo Han
Use devm_clk_get() rather than clk_get() to make cleanup paths more simple. Signed-off-by: Jingoo Han --- Changes since v1: - modified the commit message drivers/crypto/s5p-sss.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/crypto/s5p-sss.c b/drivers/crypt

Re: [PATCH] crypto: caam - Fix missing init of '.type' in AEAD algos.

2013-01-09 Thread Kim Phillips
On Mon, 7 Jan 2013 16:58:19 +0530 Vakul Garg wrote: > Following AEAD algo templates are updated for '.type' initialization. > (a) authenc(hmac(sha224),cbc(aes)) > (b) authenc(hmac(sha384),cbc(aes)) > (c) authenc(hmac(sha224),cbc(des3_ede)) > (d) authenc(hmac(sha384),cbc(de

Re: [PATCH][RFC] crypto: tcrypt - Ahash tests changed to run in parallel.

2013-01-09 Thread Kim Phillips
On Sat, 5 Jan 2013 17:14:13 + Garg Vakul-B16394 wrote: > > From: Jussi Kivilinna [mailto:jussi.kivili...@mbnet.fi] > > Sent: Saturday, January 05, 2013 9:56 PM > > > > Quoting Vakul Garg : > > > > > This allows to test & run multiple parallel crypto ahash contexts. > > > Each of the test ve

[PATCH] crypto: tcrypt - Ahash tests changed to run in parallel.

2013-01-09 Thread Vakul Garg
This allows to test & run multiple parallel crypto ahash contexts. Each of the test vector under the ahash speed test template is started under a separate kthread. Signed-off-by: Vakul Garg --- crypto/tcrypt.c | 164 +++ 1 files changed, 129 i