aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto/talitos.c
diff options
context:
space:
mode:
authorLee Nipper <lee.nipper@freescale.com>2008-07-17 04:22:30 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2008-07-17 04:22:30 -0400
commit695ad589698571046d42a4450c2d801486905535 (patch)
treeb5cbb533c8d20842823d73833fe432c4a89562ba /drivers/crypto/talitos.c
parent4aaf087846f9a1f1ec272393f5cd78f713e24f37 (diff)
crypto: talitos - Correct dst != src case handling
Seems that dst == src, but this fixes the logic in case it's not. Signed-off-by: Lee Nipper <lee.nipper@freescale.com> Signed-off-by: Kim Phillips <kim.phillips@freescale.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/talitos.c')
-rw-r--r--drivers/crypto/talitos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/talitos.c b/drivers/crypto/talitos.c
index 01e6595014ee..f644fba35c8c 100644
--- a/drivers/crypto/talitos.c
+++ b/drivers/crypto/talitos.c
@@ -1022,7 +1022,7 @@ static struct ipsec_esp_edesc *ipsec_esp_edesc_alloc(struct aead_request *areq,
1022 dst_nents = src_nents; 1022 dst_nents = src_nents;
1023 } else { 1023 } else {
1024 dst_nents = sg_count(areq->dst, areq->cryptlen + ctx->authsize); 1024 dst_nents = sg_count(areq->dst, areq->cryptlen + ctx->authsize);
1025 dst_nents = (dst_nents == 1) ? 0 : src_nents; 1025 dst_nents = (dst_nents == 1) ? 0 : dst_nents;
1026 } 1026 }
1027 1027
1028 /* 1028 /*