We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3a3794 commit 62ba63dCopy full SHA for 62ba63d
arch/sparc/crypto/camellia_glue.c
@@ -98,6 +98,7 @@ static int __ecb_crypt(struct blkcipher_desc *desc,
98
99
blkcipher_walk_init(&walk, dst, src, nbytes);
100
err = blkcipher_walk_virt(desc, &walk);
101
+ desc->flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP;
102
103
if (encrypt)
104
key = &ctx->encrypt_key[0];
@@ -160,6 +161,7 @@ static int cbc_encrypt(struct blkcipher_desc *desc,
160
161
162
163
164
165
166
167
camellia_sparc64_load_keys(key, ctx->key_len);
@@ -198,6 +200,7 @@ static int cbc_decrypt(struct blkcipher_desc *desc,
198
200
199
201
202
203
204
205
key = &ctx->decrypt_key[0];
206
0 commit comments