Parcourir la source

crypto: caam - Set last bit on src SG list

The new aead_edesc_alloc left out the bit indicating the last
entry on the source SG list.  This patch fixes it.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Herbert Xu il y a 10 ans
Parent
commit
7793bda8fe
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      drivers/crypto/caam/caamalg.c

+ 1 - 1
drivers/crypto/caam/caamalg.c

@@ -2624,7 +2624,7 @@ static struct aead_edesc *aead_edesc_alloc(struct aead_request *req,
 
 	sec4_sg_index = 0;
 	if (!all_contig) {
-		sg_to_sec4_sg(req->src, src_nents,
+		sg_to_sec4_sg_last(req->src, src_nents,
 			      edesc->sec4_sg + sec4_sg_index, 0);
 		sec4_sg_index += src_nents;
 	}