crypto: sahara - do not resize req->src when doing hash operations
[ Upstream commit a3c6f4f4d249cecaf2f34471aadbfb4f4ef57298 ]
When testing sahara sha256 speed performance with tcrypt (mode=404) on
imx53-qsrb board, multiple "Invalid numbers of src SG." errors are
reported. This was traced to sahara_walk_and_recalc() resizing req->src
and causing the subsequent dma_map_sg() call to fail.
Now that the previous commit fixed sahara_sha_hw_links_create() to take
into account the actual request size, rather than relying on sg->length
values, the resize operation is no longer necessary.
Therefore, remove sahara_walk_and_recalc() and simplify associated logic.
Fixes: 5a2bb93f59
("crypto: sahara - add support for SHA1/256")
Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Родитель
a5e0e39dac
Коммит
dc6779550f
|
@ -887,24 +887,6 @@ static int sahara_sha_hw_context_descriptor_create(struct sahara_dev *dev,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sahara_walk_and_recalc(struct scatterlist *sg, unsigned int nbytes)
|
|
||||||
{
|
|
||||||
if (!sg || !sg->length)
|
|
||||||
return nbytes;
|
|
||||||
|
|
||||||
while (nbytes && sg) {
|
|
||||||
if (nbytes <= sg->length) {
|
|
||||||
sg->length = nbytes;
|
|
||||||
sg_mark_end(sg);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
nbytes -= sg->length;
|
|
||||||
sg = sg_next(sg);
|
|
||||||
}
|
|
||||||
|
|
||||||
return nbytes;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int sahara_sha_prepare_request(struct ahash_request *req)
|
static int sahara_sha_prepare_request(struct ahash_request *req)
|
||||||
{
|
{
|
||||||
struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
|
struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
|
||||||
|
@ -941,36 +923,20 @@ static int sahara_sha_prepare_request(struct ahash_request *req)
|
||||||
hash_later, 0);
|
hash_later, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* nbytes should now be multiple of blocksize */
|
rctx->total = len - hash_later;
|
||||||
req->nbytes = req->nbytes - hash_later;
|
|
||||||
|
|
||||||
sahara_walk_and_recalc(req->src, req->nbytes);
|
|
||||||
|
|
||||||
/* have data from previous operation and current */
|
/* have data from previous operation and current */
|
||||||
if (rctx->buf_cnt && req->nbytes) {
|
if (rctx->buf_cnt && req->nbytes) {
|
||||||
sg_init_table(rctx->in_sg_chain, 2);
|
sg_init_table(rctx->in_sg_chain, 2);
|
||||||
sg_set_buf(rctx->in_sg_chain, rctx->rembuf, rctx->buf_cnt);
|
sg_set_buf(rctx->in_sg_chain, rctx->rembuf, rctx->buf_cnt);
|
||||||
|
|
||||||
sg_chain(rctx->in_sg_chain, 2, req->src);
|
sg_chain(rctx->in_sg_chain, 2, req->src);
|
||||||
|
|
||||||
rctx->total = req->nbytes + rctx->buf_cnt;
|
|
||||||
rctx->in_sg = rctx->in_sg_chain;
|
rctx->in_sg = rctx->in_sg_chain;
|
||||||
|
|
||||||
req->src = rctx->in_sg_chain;
|
|
||||||
/* only data from previous operation */
|
/* only data from previous operation */
|
||||||
} else if (rctx->buf_cnt) {
|
} else if (rctx->buf_cnt) {
|
||||||
if (req->src)
|
rctx->in_sg = rctx->in_sg_chain;
|
||||||
rctx->in_sg = req->src;
|
|
||||||
else
|
|
||||||
rctx->in_sg = rctx->in_sg_chain;
|
|
||||||
/* buf was copied into rembuf above */
|
|
||||||
sg_init_one(rctx->in_sg, rctx->rembuf, rctx->buf_cnt);
|
sg_init_one(rctx->in_sg, rctx->rembuf, rctx->buf_cnt);
|
||||||
rctx->total = rctx->buf_cnt;
|
|
||||||
/* no data from previous operation */
|
/* no data from previous operation */
|
||||||
} else {
|
} else {
|
||||||
rctx->in_sg = req->src;
|
rctx->in_sg = req->src;
|
||||||
rctx->total = req->nbytes;
|
|
||||||
req->src = rctx->in_sg;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* on next call, we only have the remaining data in the buffer */
|
/* on next call, we only have the remaining data in the buffer */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче