Commit 6909823d authored by Herbert Xu's avatar Herbert Xu

crypto: engine - Use crypto_request_complete

Use the crypto_request_complete helper instead of calling the
completion function directly.
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent d5770679
...@@ -54,7 +54,7 @@ static void crypto_finalize_request(struct crypto_engine *engine, ...@@ -54,7 +54,7 @@ static void crypto_finalize_request(struct crypto_engine *engine,
} }
} }
lockdep_assert_in_softirq(); lockdep_assert_in_softirq();
req->complete(req, err); crypto_request_complete(req, err);
kthread_queue_work(engine->kworker, &engine->pump_requests); kthread_queue_work(engine->kworker, &engine->pump_requests);
} }
...@@ -130,7 +130,7 @@ static void crypto_pump_requests(struct crypto_engine *engine, ...@@ -130,7 +130,7 @@ static void crypto_pump_requests(struct crypto_engine *engine,
engine->cur_req = async_req; engine->cur_req = async_req;
if (backlog) if (backlog)
backlog->complete(backlog, -EINPROGRESS); crypto_request_complete(backlog, -EINPROGRESS);
if (engine->busy) if (engine->busy)
was_busy = true; was_busy = true;
...@@ -214,7 +214,7 @@ static void crypto_pump_requests(struct crypto_engine *engine, ...@@ -214,7 +214,7 @@ static void crypto_pump_requests(struct crypto_engine *engine,
} }
req_err_2: req_err_2:
async_req->complete(async_req, ret); crypto_request_complete(async_req, ret);
retry: retry:
/* If retry mechanism is supported, send new requests to engine */ /* If retry mechanism is supported, send new requests to engine */
......
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