diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2017-05-10 08:52:26 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-06-19 14:11:54 +0800 |
commit | 8270f5d799c946d7636ef317eff990830d2fe89f (patch) | |
tree | 7ecec5723ce728de081a1b3e07e2c6e828385ee5 /arch/x86/crypto | |
parent | fa598d0a7026219461a1ad76e27117ce325fa0e4 (diff) | |
download | talos-op-linux-8270f5d799c946d7636ef317eff990830d2fe89f.tar.gz talos-op-linux-8270f5d799c946d7636ef317eff990830d2fe89f.zip |
crypto: glue_helper - Delete some dead code
We checked (nbytes < bsize) inside the loops so it's not possible to hit
the "goto done;" here. This code is cut and paste from other slightly
different loops where we don't have the check inside the loop.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto')
-rw-r--r-- | arch/x86/crypto/glue_helper.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/crypto/glue_helper.c b/arch/x86/crypto/glue_helper.c index 24ac9fad832d..d61e57960fe0 100644 --- a/arch/x86/crypto/glue_helper.c +++ b/arch/x86/crypto/glue_helper.c @@ -176,9 +176,6 @@ __glue_cbc_decrypt_128bit(const struct common_glue_ctx *gctx, src -= 1; dst -= 1; } while (nbytes >= func_bytes); - - if (nbytes < bsize) - goto done; } } |