From: Robert Baronescu Date: Tue, 10 Oct 2017 10:21:59 +0000 (+0300) Subject: crypto: tcrypt - fix S/G table for test_aead_speed() X-Git-Tag: v4.14.19~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a570cfe785a1d031ee56e3c4a3534cb36e26b65;p=platform%2Fkernel%2Flinux-exynos.git crypto: tcrypt - fix S/G table for test_aead_speed() commit 5c6ac1d4f8fbdbed65dbeb8cf149d736409d16a1 upstream. In case buffer length is a multiple of PAGE_SIZE, the S/G table is incorrectly generated. Fix this by handling buflen = k * PAGE_SIZE separately. Signed-off-by: Robert Baronescu Signed-off-by: Herbert Xu Signed-off-by: Horia Geantă Signed-off-by: Greg Kroah-Hartman --- diff --git a/crypto/tcrypt.c b/crypto/tcrypt.c index f5f58a6..e339960 100644 --- a/crypto/tcrypt.c +++ b/crypto/tcrypt.c @@ -221,11 +221,13 @@ static void sg_init_aead(struct scatterlist *sg, char *xbuf[XBUFSIZE], } sg_init_table(sg, np + 1); - np--; + if (rem) + np--; for (k = 0; k < np; k++) sg_set_buf(&sg[k + 1], xbuf[k], PAGE_SIZE); - sg_set_buf(&sg[k + 1], xbuf[k], rem); + if (rem) + sg_set_buf(&sg[k + 1], xbuf[k], rem); } static void test_aead_speed(const char *algo, int enc, unsigned int secs,