diff options
author | Steffen Klassert <steffen.klassert@secunet.com> | 2009-07-24 01:56:31 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2009-07-24 01:56:31 -0400 |
commit | 5befbd5a7e9c814d145f15b4281c88da96fb1aa9 (patch) | |
tree | 0fd9e4a8e95b1e487742ad3c23e3f2bc188a82ac /crypto | |
parent | f592682f9fca18d336ac068a1abc8507b4a1d936 (diff) |
crypto: ahash - Use GFP_KERNEL on allocation if the request can sleep
ahash_op_unaligned() and ahash_def_finup() allocate memory atomically,
regardless whether the request can sleep or not. This patch changes
this to use GFP_KERNEL if the request can sleep.
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/ahash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c index 28a33d06c274..33a4ff45f842 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c | |||
@@ -223,7 +223,7 @@ static int ahash_op_unaligned(struct ahash_request *req, | |||
223 | 223 | ||
224 | priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask), | 224 | priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask), |
225 | (req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP) ? | 225 | (req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP) ? |
226 | GFP_ATOMIC : GFP_ATOMIC); | 226 | GFP_KERNEL : GFP_ATOMIC); |
227 | if (!priv) | 227 | if (!priv) |
228 | return -ENOMEM; | 228 | return -ENOMEM; |
229 | 229 | ||
@@ -333,7 +333,7 @@ static int ahash_def_finup(struct ahash_request *req) | |||
333 | 333 | ||
334 | priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask), | 334 | priv = kmalloc(sizeof(*priv) + ahash_align_buffer_size(ds, alignmask), |
335 | (req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP) ? | 335 | (req->base.flags & CRYPTO_TFM_REQ_MAY_SLEEP) ? |
336 | GFP_ATOMIC : GFP_ATOMIC); | 336 | GFP_KERNEL : GFP_ATOMIC); |
337 | if (!priv) | 337 | if (!priv) |
338 | return -ENOMEM; | 338 | return -ENOMEM; |
339 | 339 | ||