aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crypto/ahash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c
index 1576f95f9afe..a196055b73d3 100644
--- a/crypto/ahash.c
+++ b/crypto/ahash.c
@@ -145,7 +145,7 @@ static int ahash_setkey_unaligned(struct crypto_ahash *tfm, const u8 *key,
145 unsigned long absize; 145 unsigned long absize;
146 146
147 absize = keylen + alignmask; 147 absize = keylen + alignmask;
148 buffer = kmalloc(absize, GFP_ATOMIC); 148 buffer = kmalloc(absize, GFP_KERNEL);
149 if (!buffer) 149 if (!buffer)
150 return -ENOMEM; 150 return -ENOMEM;
151 151