dect
/
linux-2.6
Archived
13
0
Fork 0

crypto: algapi - Fix hang on crypto allocation

git commit 398710379 (crypto: algapi - Move larval completion
into algboss) replaced accidentally a call to complete_all() by
a call to complete(). This causes a hang on crypto allocation
if we have more than one larval waiter. This pach restores the
call to complete_all().

Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Steffen Klassert 2012-06-27 13:31:01 +02:00 committed by Herbert Xu
parent b9b0f080fa
commit 26c8aaebc1
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ static int cryptomgr_probe(void *data)
crypto_tmpl_put(tmpl);
out:
complete(param->completion);
complete_all(param->completion);
kfree(param);
module_put_and_exit(0);
}