Re: [patch] crypto: remove a duplicate checks in __cbc_decrypt()

2014-02-25 Thread Herbert Xu
On Fri, Feb 14, 2014 at 06:55:45PM +0100, Johannes Götzfried wrote: > On Thu, Feb 13, 2014 at 05:58:32PM +0300, Dan Carpenter wrote: > > Signed-off-by: Dan Carpenter > > Acked-by: Johannes Götzfried Patch applied. Thanks! -- Email: Herbert Xu Home Page: http://gondor.apana.org.au/~herbert/ P

Re: [patch] crypto: remove a duplicate checks in __cbc_decrypt()

2014-02-14 Thread Johannes Götzfried
On Thu, Feb 13, 2014 at 05:58:32PM +0300, Dan Carpenter wrote: > Signed-off-by: Dan Carpenter Acked-by: Johannes Götzfried > --- > This doesn't change how the code works, but maybe their is a bug in the > original code. Please review? > diff --git a/arch/x86/crypto/cast5_avx_glue.c > b/arch/

Re: [patch] crypto: remove a duplicate checks in __cbc_decrypt()

2014-02-14 Thread Jussi Kivilinna
On 13.02.2014 16:58, Dan Carpenter wrote: > We checked "nbytes < bsize" before so it can't happen here. > > Signed-off-by: Dan Carpenter Acked-by: Jussi Kivilinna > --- > This doesn't change how the code works, but maybe their is a bug in the > original code. Please review? > > diff --git a/

[patch] crypto: remove a duplicate checks in __cbc_decrypt()

2014-02-13 Thread Dan Carpenter
We checked "nbytes < bsize" before so it can't happen here. Signed-off-by: Dan Carpenter --- This doesn't change how the code works, but maybe their is a bug in the original code. Please review? diff --git a/arch/x86/crypto/cast5_avx_glue.c b/arch/x86/crypto/cast5_avx_glue.c index e6a3700489b9.