Commit e02ea6f9 authored by Wolfram Sang's avatar Wolfram Sang Committed by Herbert Xu

crypto: sahara - use 'time_left' variable with wait_for_completion_timeout()

There is a confusing pattern in the kernel to use a variable named 'timeout' to
store the result of wait_for_completion_timeout() causing patterns like:

	timeout = wait_for_completion_timeout(...)
	if (!timeout) return -ETIMEDOUT;

with all kinds of permutations. Use 'time_left' as a variable to make the code
self explaining.
Signed-off-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 98f9e447
...@@ -559,7 +559,7 @@ static int sahara_aes_process(struct skcipher_request *req) ...@@ -559,7 +559,7 @@ static int sahara_aes_process(struct skcipher_request *req)
struct sahara_ctx *ctx; struct sahara_ctx *ctx;
struct sahara_aes_reqctx *rctx; struct sahara_aes_reqctx *rctx;
int ret; int ret;
unsigned long timeout; unsigned long time_left;
/* Request is ready to be dispatched by the device */ /* Request is ready to be dispatched by the device */
dev_dbg(dev->device, dev_dbg(dev->device,
...@@ -597,15 +597,15 @@ static int sahara_aes_process(struct skcipher_request *req) ...@@ -597,15 +597,15 @@ static int sahara_aes_process(struct skcipher_request *req)
if (ret) if (ret)
return -EINVAL; return -EINVAL;
timeout = wait_for_completion_timeout(&dev->dma_completion, time_left = wait_for_completion_timeout(&dev->dma_completion,
msecs_to_jiffies(SAHARA_TIMEOUT_MS)); msecs_to_jiffies(SAHARA_TIMEOUT_MS));
dma_unmap_sg(dev->device, dev->out_sg, dev->nb_out_sg, dma_unmap_sg(dev->device, dev->out_sg, dev->nb_out_sg,
DMA_FROM_DEVICE); DMA_FROM_DEVICE);
dma_unmap_sg(dev->device, dev->in_sg, dev->nb_in_sg, dma_unmap_sg(dev->device, dev->in_sg, dev->nb_in_sg,
DMA_TO_DEVICE); DMA_TO_DEVICE);
if (!timeout) { if (!time_left) {
dev_err(dev->device, "AES timeout\n"); dev_err(dev->device, "AES timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
} }
...@@ -931,7 +931,7 @@ static int sahara_sha_process(struct ahash_request *req) ...@@ -931,7 +931,7 @@ static int sahara_sha_process(struct ahash_request *req)
struct sahara_dev *dev = dev_ptr; struct sahara_dev *dev = dev_ptr;
struct sahara_sha_reqctx *rctx = ahash_request_ctx(req); struct sahara_sha_reqctx *rctx = ahash_request_ctx(req);
int ret; int ret;
unsigned long timeout; unsigned long time_left;
ret = sahara_sha_prepare_request(req); ret = sahara_sha_prepare_request(req);
if (!ret) if (!ret)
...@@ -963,14 +963,14 @@ static int sahara_sha_process(struct ahash_request *req) ...@@ -963,14 +963,14 @@ static int sahara_sha_process(struct ahash_request *req)
sahara_write(dev, dev->hw_phys_desc[0], SAHARA_REG_DAR); sahara_write(dev, dev->hw_phys_desc[0], SAHARA_REG_DAR);
timeout = wait_for_completion_timeout(&dev->dma_completion, time_left = wait_for_completion_timeout(&dev->dma_completion,
msecs_to_jiffies(SAHARA_TIMEOUT_MS)); msecs_to_jiffies(SAHARA_TIMEOUT_MS));
if (rctx->sg_in_idx) if (rctx->sg_in_idx)
dma_unmap_sg(dev->device, dev->in_sg, dev->nb_in_sg, dma_unmap_sg(dev->device, dev->in_sg, dev->nb_in_sg,
DMA_TO_DEVICE); DMA_TO_DEVICE);
if (!timeout) { if (!time_left) {
dev_err(dev->device, "SHA timeout\n"); dev_err(dev->device, "SHA timeout\n");
return -ETIMEDOUT; return -ETIMEDOUT;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment