Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 093900c2 authored by Herbert Xu's avatar Herbert Xu
Browse files

crypto: ahash - Use GFP_KERNEL in unaligned setkey



We currently use GFP_ATOMIC in the unaligned setkey function
to allocate the temporary aligned buffer.  Since setkey must
be called in a sleepable context, we can use GFP_KERNEL instead.

Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 0e2d3a12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -145,7 +145,7 @@ static int ahash_setkey_unaligned(struct crypto_ahash *tfm, const u8 *key,
	unsigned long absize;

	absize = keylen + alignmask;
	buffer = kmalloc(absize, GFP_ATOMIC);
	buffer = kmalloc(absize, GFP_KERNEL);
	if (!buffer)
		return -ENOMEM;