Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 5c925e8b authored by Eric Biggers's avatar Eric Biggers Committed by Herbert Xu
Browse files

crypto: remove CRYPTO_TFM_RES_BAD_BLOCK_LEN


The flag CRYPTO_TFM_RES_BAD_BLOCK_LEN is never checked for, and it's
only set by one driver.  And even that single driver's use is wrong
because the driver is setting the flag from ->encrypt() and ->decrypt()
with no locking, which is unsafe because ->encrypt() and ->decrypt() can
be executed by many threads in parallel on the same tfm.

Just remove this flag.

Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent f9d89b85
Branches
Tags
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment