diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2006-07-29 21:53:45 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2006-09-20 21:41:50 -0400 |
commit | 8f21cf0d2bae04ece761595036c9da8328b279aa (patch) | |
tree | 4025d020895dcbfc2aef330fed01860bbf0ba64d /crypto/cipher.c | |
parent | 6d7d684d635ac5a345f075015f2c84169c111c6a (diff) |
[CRYPTO] api: Feed flag directly to crypto_yield
The sleeping flag used to determine whether crypto_yield can actually
yield is really a per-operation flag rather than a per-tfm flag. This
patch changes crypto_yield to take a flag directly so that we can start
using a per-operation flag instead the tfm flag.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/cipher.c')
-rw-r--r-- | crypto/cipher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/cipher.c b/crypto/cipher.c index aebc4a2adc80..f573c59ed9dc 100644 --- a/crypto/cipher.c +++ b/crypto/cipher.c | |||
@@ -145,7 +145,7 @@ static int crypt(const struct cipher_desc *desc, | |||
145 | if (!nbytes) | 145 | if (!nbytes) |
146 | break; | 146 | break; |
147 | 147 | ||
148 | crypto_yield(tfm); | 148 | crypto_yield(tfm->crt_flags); |
149 | } | 149 | } |
150 | 150 | ||
151 | if (buffer) | 151 | if (buffer) |