Re: [patch] pcrypt: handle crypto_get_attr_type() errors

2010-03-22 Thread Steffen Klassert
On Sun, Mar 21, 2010 at 12:28:47PM +0300, Dan Carpenter wrote: > crypto_get_attr_type() can returns ERR_PTRs if there is a problem. > > Signed-off-by: Dan Carpenter > > diff --git a/crypto/pcrypt.c b/crypto/pcrypt.c > index 8020124..41bd80f 100644 > --- a/crypto/pcrypt.c > +++ b/crypto/pcrypt.c

Re: [patch] pcrypt: handle crypto_get_attr_type() errors

2010-03-22 Thread Dan Carpenter
On Mon, Mar 22, 2010 at 02:23:42PM +0100, Steffen Klassert wrote: > On Sun, Mar 21, 2010 at 12:28:47PM +0300, Dan Carpenter wrote: > > crypto_get_attr_type() can returns ERR_PTRs if there is a problem. > > > > Signed-off-by: Dan Carpenter > > > > diff --git a/crypto/pcrypt.c b/crypto/pcrypt.c >

[patch v2] pcrypt: handle crypto_get_attr_type() errors

2010-03-22 Thread Dan Carpenter
I was concerned about the error handling for crypto_get_attr_type() in pcrypt_alloc_aead(). Steffen Klassert pointed out that we could simply avoid calling crypto_get_attr_type() if we passed the type and mask as a parameter. Signed-off-by: Dan Carpenter diff --git a/crypto/pcrypt.c b/crypto/

Re: [patch v2] pcrypt: handle crypto_get_attr_type() errors

2010-03-22 Thread Steffen Klassert
On Mon, Mar 22, 2010 at 04:53:19PM +0300, Dan Carpenter wrote: > > -static struct crypto_instance *pcrypt_alloc_aead(struct rtattr **tb) > +static struct crypto_instance *pcrypt_alloc_aead(struct rtattr **tb, > + struct crypto_attr_type *algt) > { >

[patch v3] pcrypt: handle crypto_get_attr_type() errors

2010-03-22 Thread Dan Carpenter
I was concerned about the error handling for crypto_get_attr_type() in pcrypt_alloc_aead(). Steffen Klassert pointed out that we could simply avoid calling crypto_get_attr_type() if we passed the type and mask as a parameters. Signed-off-by: Dan Carpenter --- All three versions have basically be