mirror of https://github.com/torvalds/linux.git
crypto: ccree - use std api when possible
Move to use the std api sg_nents_for_len() when we do not in fact require the extra information about the number of bytes in the last entry provided by the in-driver variant cc_get_sgl_nents(). This also resolves a Coverity warning cause by us not using the output value. Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
dcb2cf1d2c
commit
b7ec853068
|
|
@ -133,9 +133,9 @@ void cc_zero_sgl(struct scatterlist *sgl, u32 data_len)
|
||||||
void cc_copy_sg_portion(struct device *dev, u8 *dest, struct scatterlist *sg,
|
void cc_copy_sg_portion(struct device *dev, u8 *dest, struct scatterlist *sg,
|
||||||
u32 to_skip, u32 end, enum cc_sg_cpy_direct direct)
|
u32 to_skip, u32 end, enum cc_sg_cpy_direct direct)
|
||||||
{
|
{
|
||||||
u32 nents, lbytes;
|
u32 nents;
|
||||||
|
|
||||||
nents = cc_get_sgl_nents(dev, sg, end, &lbytes);
|
nents = sg_nents_for_len(sg, end);
|
||||||
sg_copy_buffer(sg, nents, (void *)dest, (end - to_skip + 1), to_skip,
|
sg_copy_buffer(sg, nents, (void *)dest, (end - to_skip + 1), to_skip,
|
||||||
(direct == CC_SG_TO_BUF));
|
(direct == CC_SG_TO_BUF));
|
||||||
}
|
}
|
||||||
|
|
@ -519,7 +519,6 @@ void cc_unmap_aead_request(struct device *dev, struct aead_request *req)
|
||||||
unsigned int hw_iv_size = areq_ctx->hw_iv_size;
|
unsigned int hw_iv_size = areq_ctx->hw_iv_size;
|
||||||
struct crypto_aead *tfm = crypto_aead_reqtfm(req);
|
struct crypto_aead *tfm = crypto_aead_reqtfm(req);
|
||||||
struct cc_drvdata *drvdata = dev_get_drvdata(dev);
|
struct cc_drvdata *drvdata = dev_get_drvdata(dev);
|
||||||
u32 dummy;
|
|
||||||
u32 size_to_unmap = 0;
|
u32 size_to_unmap = 0;
|
||||||
|
|
||||||
if (areq_ctx->mac_buf_dma_addr) {
|
if (areq_ctx->mac_buf_dma_addr) {
|
||||||
|
|
@ -583,15 +582,13 @@ void cc_unmap_aead_request(struct device *dev, struct aead_request *req)
|
||||||
if (areq_ctx->is_gcm4543)
|
if (areq_ctx->is_gcm4543)
|
||||||
size_to_unmap += crypto_aead_ivsize(tfm);
|
size_to_unmap += crypto_aead_ivsize(tfm);
|
||||||
|
|
||||||
dma_unmap_sg(dev, req->src,
|
dma_unmap_sg(dev, req->src, sg_nents_for_len(req->src, size_to_unmap),
|
||||||
cc_get_sgl_nents(dev, req->src, size_to_unmap, &dummy),
|
|
||||||
DMA_BIDIRECTIONAL);
|
DMA_BIDIRECTIONAL);
|
||||||
if (req->src != req->dst) {
|
if (req->src != req->dst) {
|
||||||
dev_dbg(dev, "Unmapping dst sgl: req->dst=%pK\n",
|
dev_dbg(dev, "Unmapping dst sgl: req->dst=%pK\n",
|
||||||
sg_virt(req->dst));
|
sg_virt(req->dst));
|
||||||
dma_unmap_sg(dev, req->dst,
|
dma_unmap_sg(dev, req->dst,
|
||||||
cc_get_sgl_nents(dev, req->dst, size_to_unmap,
|
sg_nents_for_len(req->dst, size_to_unmap),
|
||||||
&dummy),
|
|
||||||
DMA_BIDIRECTIONAL);
|
DMA_BIDIRECTIONAL);
|
||||||
}
|
}
|
||||||
if (drvdata->coherent &&
|
if (drvdata->coherent &&
|
||||||
|
|
@ -1429,8 +1426,7 @@ int cc_map_hash_request_update(struct cc_drvdata *drvdata, void *ctx,
|
||||||
if (total_in_len < block_size) {
|
if (total_in_len < block_size) {
|
||||||
dev_dbg(dev, " less than one block: curr_buff=%pK *curr_buff_cnt=0x%X copy_to=%pK\n",
|
dev_dbg(dev, " less than one block: curr_buff=%pK *curr_buff_cnt=0x%X copy_to=%pK\n",
|
||||||
curr_buff, *curr_buff_cnt, &curr_buff[*curr_buff_cnt]);
|
curr_buff, *curr_buff_cnt, &curr_buff[*curr_buff_cnt]);
|
||||||
areq_ctx->in_nents =
|
areq_ctx->in_nents = sg_nents_for_len(src, nbytes);
|
||||||
cc_get_sgl_nents(dev, src, nbytes, &dummy);
|
|
||||||
sg_copy_to_buffer(src, areq_ctx->in_nents,
|
sg_copy_to_buffer(src, areq_ctx->in_nents,
|
||||||
&curr_buff[*curr_buff_cnt], nbytes);
|
&curr_buff[*curr_buff_cnt], nbytes);
|
||||||
*curr_buff_cnt += nbytes;
|
*curr_buff_cnt += nbytes;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue