Commit e2b537b7 authored by Herbert Xu's avatar Herbert Xu

crypto: hisilicon - Use request_complete helpers

Use the request_complete helpers instead of calling the completion
function directly.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 17fcc82e
...@@ -504,8 +504,8 @@ static void sec_skcipher_alg_callback(struct sec_bd_info *sec_resp, ...@@ -504,8 +504,8 @@ static void sec_skcipher_alg_callback(struct sec_bd_info *sec_resp,
kfifo_avail(&ctx->queue->softqueue) > kfifo_avail(&ctx->queue->softqueue) >
backlog_req->num_elements)) { backlog_req->num_elements)) {
sec_send_request(backlog_req, ctx->queue); sec_send_request(backlog_req, ctx->queue);
backlog_req->req_base->complete(backlog_req->req_base, crypto_request_complete(backlog_req->req_base,
-EINPROGRESS); -EINPROGRESS);
list_del(&backlog_req->backlog_head); list_del(&backlog_req->backlog_head);
} }
} }
...@@ -534,7 +534,7 @@ static void sec_skcipher_alg_callback(struct sec_bd_info *sec_resp, ...@@ -534,7 +534,7 @@ static void sec_skcipher_alg_callback(struct sec_bd_info *sec_resp,
if (skreq->src != skreq->dst) if (skreq->src != skreq->dst)
dma_unmap_sg(dev, skreq->dst, sec_req->len_out, dma_unmap_sg(dev, skreq->dst, sec_req->len_out,
DMA_BIDIRECTIONAL); DMA_BIDIRECTIONAL);
skreq->base.complete(&skreq->base, sec_req->err); skcipher_request_complete(skreq, sec_req->err);
} }
} }
......
...@@ -1459,12 +1459,11 @@ static void sec_skcipher_callback(struct sec_ctx *ctx, struct sec_req *req, ...@@ -1459,12 +1459,11 @@ static void sec_skcipher_callback(struct sec_ctx *ctx, struct sec_req *req,
break; break;
backlog_sk_req = backlog_req->c_req.sk_req; backlog_sk_req = backlog_req->c_req.sk_req;
backlog_sk_req->base.complete(&backlog_sk_req->base, skcipher_request_complete(backlog_sk_req, -EINPROGRESS);
-EINPROGRESS);
atomic64_inc(&ctx->sec->debug.dfx.recv_busy_cnt); atomic64_inc(&ctx->sec->debug.dfx.recv_busy_cnt);
} }
sk_req->base.complete(&sk_req->base, err); skcipher_request_complete(sk_req, err);
} }
static void set_aead_auth_iv(struct sec_ctx *ctx, struct sec_req *req) static void set_aead_auth_iv(struct sec_ctx *ctx, struct sec_req *req)
...@@ -1736,12 +1735,11 @@ static void sec_aead_callback(struct sec_ctx *c, struct sec_req *req, int err) ...@@ -1736,12 +1735,11 @@ static void sec_aead_callback(struct sec_ctx *c, struct sec_req *req, int err)
break; break;
backlog_aead_req = backlog_req->aead_req.aead_req; backlog_aead_req = backlog_req->aead_req.aead_req;
backlog_aead_req->base.complete(&backlog_aead_req->base, aead_request_complete(backlog_aead_req, -EINPROGRESS);
-EINPROGRESS);
atomic64_inc(&c->sec->debug.dfx.recv_busy_cnt); atomic64_inc(&c->sec->debug.dfx.recv_busy_cnt);
} }
a_req->base.complete(&a_req->base, err); aead_request_complete(a_req, err);
} }
static void sec_request_uninit(struct sec_ctx *ctx, struct sec_req *req) static void sec_request_uninit(struct sec_ctx *ctx, struct sec_req *req)
......
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