We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f70b359 commit 6e88f01Copy full SHA for 6e88f01
arch/arm64/crypto/aes-glue.c
@@ -223,8 +223,8 @@ static int ctr_encrypt(struct skcipher_request *req)
223
kernel_neon_begin();
224
aes_ctr_encrypt(walk.dst.virt.addr, walk.src.virt.addr,
225
(u8 *)ctx->key_enc, rounds, blocks, walk.iv);
226
- err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
227
kernel_neon_end();
+ err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
228
}
229
if (walk.nbytes) {
230
u8 __aligned(8) tail[AES_BLOCK_SIZE];
0 commit comments