OSDN Git Service

crypto: chacha20-generic - don't unnecessarily use atomic walk
authorEric Biggers <ebiggers@google.com>
Sat, 17 Nov 2018 01:26:19 +0000 (17:26 -0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Tue, 20 Nov 2018 06:26:55 +0000 (14:26 +0800)
chacha20-generic doesn't use SIMD instructions or otherwise disable
preemption, so passing atomic=true to skcipher_walk_virt() is
unnecessary.

Suggested-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Acked-by: Martin Willi <martin@strongswan.org>
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/chacha20_generic.c

index 3ae9658..3529521 100644 (file)
@@ -81,7 +81,7 @@ int crypto_chacha20_crypt(struct skcipher_request *req)
        u32 state[16];
        int err;
 
-       err = skcipher_walk_virt(&walk, req, true);
+       err = skcipher_walk_virt(&walk, req, false);
 
        crypto_chacha20_init(state, ctx, walk.iv);