Re: [PATCH] crypto: remove double execution of the same test suite

2013-08-01 Thread Herbert Xu
On Thu, Aug 01, 2013 at 08:11:25AM +, Stoica Cristian-B18196 wrote: > > Which algorithm (apart from crc* which I know and will fix) uses the > > same driver name as its algorithm name? Doing this will cause issues > > when an alternative implementation for that algorithm gets added. > > Fixing

RE: [PATCH] crypto: remove double execution of the same test suite

2013-08-01 Thread Stoica Cristian-B18196
> Which algorithm (apart from crc* which I know and will fix) uses the > same driver name as its algorithm name? Doing this will cause issues > when an alternative implementation for that algorithm gets added. Fixing names resolves double calls only for the thread cryptomgr_test->alg_test where t

Re: [PATCH] crypto: remove double execution of the same test suite

2013-07-31 Thread Herbert Xu
On Thu, Jul 18, 2013 at 06:57:07PM +0300, Cristian Stoica wrote: > This patch removes redundant execution of the same test suite in cases > where alg and driver variables are the same (e.g. when alg_test is > called from tcrypt_test) > > Signed-off-by: Cristian Stoica Which algorithm (apart from

RE: [PATCH] crypto: remove double execution of the same test suite

2013-07-31 Thread Stoica Cristian-B18196
kernel.org; Geanta Neag Horia Ioan-B05471; Stoica Cristian- > B18196 > Subject: [PATCH] crypto: remove double execution of the same test suite > > This patch removes redundant execution of the same test suite in cases > where alg and driver variables are the same (e.g. when alg_

RE: [PATCH] crypto: remove double execution of the same test suite

2013-07-18 Thread Gupta Ruchika-R66431
.net; linux-crypto@vger.kernel.org; linux- > ker...@vger.kernel.org; Geanta Neag Horia Ioan-B05471; Stoica Cristian- > B18196 > Subject: [PATCH] crypto: remove double execution of the same test suite > > This patch removes redundant execution of the same test suite in cases where > a

Re: [PATCH] crypto: remove double execution of the same test suite

2013-07-18 Thread Horia Geantă
On 7/18/2013 6:57 PM, Cristian Stoica wrote: This patch removes redundant execution of the same test suite in cases where alg and driver variables are the same (e.g. when alg_test is called from tcrypt_test) Signed-off-by: Cristian Stoica Reviewed-by: Horia Geanta --- crypto/testmgr.c |

[PATCH] crypto: remove double execution of the same test suite

2013-07-18 Thread Cristian Stoica
This patch removes redundant execution of the same test suite in cases where alg and driver variables are the same (e.g. when alg_test is called from tcrypt_test) Signed-off-by: Cristian Stoica --- crypto/testmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/testmg