diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-05-19 03:51:40 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2007-07-11 08:58:53 -0400 |
commit | fe3c5206adc5d7395828185ab73e9a522655b984 (patch) | |
tree | afe289e4e685152f0051062a396c5d995f7d6c28 /crypto/api.c | |
parent | 2e290f43ddb2331db2e308da206fe154bec91a7d (diff) |
[CRYPTO] api: Wake up all waiters when larval completes
Right now when a larval matures or when it dies of an error we
only wake up one waiter. This would cause other waiters to timeout
unnecessarily. This patch changes it to use complete_all to wake
up all waiters.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/api.c')
-rw-r--r-- | crypto/api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/api.c b/crypto/api.c index 33734fd9198f..4ccc5af6c265 100644 --- a/crypto/api.c +++ b/crypto/api.c | |||
@@ -144,7 +144,7 @@ static void crypto_larval_kill(struct crypto_alg *alg) | |||
144 | down_write(&crypto_alg_sem); | 144 | down_write(&crypto_alg_sem); |
145 | list_del(&alg->cra_list); | 145 | list_del(&alg->cra_list); |
146 | up_write(&crypto_alg_sem); | 146 | up_write(&crypto_alg_sem); |
147 | complete(&larval->completion); | 147 | complete_all(&larval->completion); |
148 | crypto_alg_put(alg); | 148 | crypto_alg_put(alg); |
149 | } | 149 | } |
150 | 150 | ||