Home
last modified time | relevance | path

Searched refs:async_req (Results 1 – 25 of 29) sorted by relevance

12

/kernel/linux/linux-5.10/crypto/
Dcrypto_engine.c73 struct crypto_async_request *async_req, *backlog; in crypto_pump_requests() local
119 async_req = crypto_dequeue_request(&engine->queue); in crypto_pump_requests()
120 if (!async_req) in crypto_pump_requests()
129 engine->cur_req = async_req; in crypto_pump_requests()
150 enginectx = crypto_tfm_ctx(async_req->tfm); in crypto_pump_requests()
153 ret = enginectx->op.prepare_request(engine, async_req); in crypto_pump_requests()
166 ret = enginectx->op.do_one_request(engine, async_req); in crypto_pump_requests()
189 async_req); in crypto_pump_requests()
200 crypto_enqueue_request_head(&engine->queue, async_req); in crypto_pump_requests()
210 ret = enginectx->op.unprepare_request(engine, async_req); in crypto_pump_requests()
[all …]
Drsa-pkcs1pad.c217 struct crypto_async_request async_req; in pkcs1pad_encrypt_sign_complete_cb() local
222 async_req.data = req->base.data; in pkcs1pad_encrypt_sign_complete_cb()
223 async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req)); in pkcs1pad_encrypt_sign_complete_cb()
224 async_req.flags = child_async_req->flags; in pkcs1pad_encrypt_sign_complete_cb()
225 req->base.complete(&async_req, in pkcs1pad_encrypt_sign_complete_cb()
335 struct crypto_async_request async_req; in pkcs1pad_decrypt_complete_cb() local
340 async_req.data = req->base.data; in pkcs1pad_decrypt_complete_cb()
341 async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req)); in pkcs1pad_decrypt_complete_cb()
342 async_req.flags = child_async_req->flags; in pkcs1pad_decrypt_complete_cb()
343 req->base.complete(&async_req, pkcs1pad_decrypt_complete(req, err)); in pkcs1pad_decrypt_complete_cb()
[all …]
/kernel/linux/linux-5.10/drivers/crypto/qce/
Dcore.c60 static int qce_handle_request(struct crypto_async_request *async_req) in qce_handle_request() argument
64 u32 type = crypto_tfm_alg_type(async_req->tfm); in qce_handle_request()
70 ret = ops->async_req_handle(async_req); in qce_handle_request()
80 struct crypto_async_request *async_req, *backlog; in qce_handle_queue() local
96 async_req = crypto_dequeue_request(&qce->queue); in qce_handle_queue()
97 if (async_req) in qce_handle_queue()
98 qce->req = async_req; in qce_handle_queue()
102 if (!async_req) in qce_handle_queue()
111 err = qce_handle_request(async_req); in qce_handle_queue()
Dcommon.c142 static int qce_setup_regs_ahash(struct crypto_async_request *async_req, in qce_setup_regs_ahash() argument
145 struct ahash_request *req = ahash_request_cast(async_req); in qce_setup_regs_ahash()
146 struct crypto_ahash *ahash = __crypto_ahash_cast(async_req->tfm); in qce_setup_regs_ahash()
148 struct qce_alg_template *tmpl = to_ahash_tmpl(async_req->tfm); in qce_setup_regs_ahash()
151 unsigned int blocksize = crypto_tfm_alg_blocksize(async_req->tfm); in qce_setup_regs_ahash()
308 static int qce_setup_regs_skcipher(struct crypto_async_request *async_req, in qce_setup_regs_skcipher() argument
311 struct skcipher_request *req = skcipher_request_cast(async_req); in qce_setup_regs_skcipher()
313 struct qce_cipher_ctx *ctx = crypto_tfm_ctx(async_req->tfm); in qce_setup_regs_skcipher()
390 int qce_start(struct crypto_async_request *async_req, u32 type, u32 totallen, in qce_start() argument
396 return qce_setup_regs_skcipher(async_req, totallen, offset); in qce_start()
[all …]
Dsha.c32 struct crypto_async_request *async_req = data; in qce_ahash_done() local
33 struct ahash_request *req = ahash_request_cast(async_req); in qce_ahash_done()
36 struct qce_alg_template *tmpl = to_ahash_tmpl(async_req->tfm); in qce_ahash_done()
69 static int qce_ahash_async_req_handle(struct crypto_async_request *async_req) in qce_ahash_async_req_handle() argument
71 struct ahash_request *req = ahash_request_cast(async_req); in qce_ahash_async_req_handle()
73 struct qce_sha_ctx *ctx = crypto_tfm_ctx(async_req->tfm); in qce_ahash_async_req_handle()
74 struct qce_alg_template *tmpl = to_ahash_tmpl(async_req->tfm); in qce_ahash_async_req_handle()
104 &rctx->result_sg, 1, qce_ahash_done, async_req); in qce_ahash_async_req_handle()
110 ret = qce_start(async_req, tmpl->crypto_alg_type, 0, 0); in qce_ahash_async_req_handle()
Dskcipher.c28 struct crypto_async_request *async_req = data; in qce_skcipher_done() local
29 struct skcipher_request *req = skcipher_request_cast(async_req); in qce_skcipher_done()
63 qce_skcipher_async_req_handle(struct crypto_async_request *async_req) in qce_skcipher_async_req_handle() argument
65 struct skcipher_request *req = skcipher_request_cast(async_req); in qce_skcipher_async_req_handle()
145 qce_skcipher_done, async_req); in qce_skcipher_async_req_handle()
151 ret = qce_start(async_req, tmpl->crypto_alg_type, req->cryptlen, 0); in qce_skcipher_async_req_handle()
Dcore.h57 int (*async_req_handle)(struct crypto_async_request *async_req);
Dcommon.h97 int qce_start(struct crypto_async_request *async_req, u32 type, u32 totallen,
/kernel/linux/linux-5.10/drivers/crypto/ccp/
Dccp-crypto-aes.c22 static int ccp_aes_complete(struct crypto_async_request *async_req, int ret) in ccp_aes_complete() argument
24 struct skcipher_request *req = skcipher_request_cast(async_req); in ccp_aes_complete()
134 static int ccp_aes_rfc3686_complete(struct crypto_async_request *async_req, in ccp_aes_rfc3686_complete() argument
137 struct skcipher_request *req = skcipher_request_cast(async_req); in ccp_aes_rfc3686_complete()
143 return ccp_aes_complete(async_req, ret); in ccp_aes_rfc3686_complete()
Dccp-crypto-des3.c21 static int ccp_des3_complete(struct crypto_async_request *async_req, int ret) in ccp_des3_complete() argument
23 struct skcipher_request *req = skcipher_request_cast(async_req); in ccp_des3_complete()
Dccp-crypto-aes-xts.c62 static int ccp_aes_xts_complete(struct crypto_async_request *async_req, int ret) in ccp_aes_xts_complete() argument
64 struct skcipher_request *req = skcipher_request_cast(async_req); in ccp_aes_xts_complete()
Dccp-crypto-rsa.c44 static int ccp_rsa_complete(struct crypto_async_request *async_req, int ret) in ccp_rsa_complete() argument
46 struct akcipher_request *req = akcipher_request_cast(async_req); in ccp_rsa_complete()
Dccp-crypto-aes-cmac.c23 static int ccp_aes_cmac_complete(struct crypto_async_request *async_req, in ccp_aes_cmac_complete() argument
26 struct ahash_request *req = ahash_request_cast(async_req); in ccp_aes_cmac_complete()
Dccp-crypto-sha.c26 static int ccp_sha_complete(struct crypto_async_request *async_req, int ret) in ccp_sha_complete() argument
28 struct ahash_request *req = ahash_request_cast(async_req); in ccp_sha_complete()
/kernel/linux/linux-5.10/drivers/crypto/allwinner/sun8i-ce/
Dsun8i-ce-cipher.c79 static int sun8i_ce_cipher_prepare(struct crypto_engine *engine, void *async_req) in sun8i_ce_cipher_prepare() argument
81 struct skcipher_request *areq = container_of(async_req, struct skcipher_request, base); in sun8i_ce_cipher_prepare()
290 static int sun8i_ce_cipher_unprepare(struct crypto_engine *engine, void *async_req) in sun8i_ce_cipher_unprepare() argument
292 struct skcipher_request *areq = container_of(async_req, struct skcipher_request, base); in sun8i_ce_cipher_unprepare()
/kernel/linux/linux-5.10/drivers/crypto/
Dsahara.c1038 struct crypto_async_request *async_req; in sahara_queue_manage() local
1047 async_req = crypto_dequeue_request(&dev->queue); in sahara_queue_manage()
1053 if (async_req) { in sahara_queue_manage()
1054 if (crypto_tfm_alg_type(async_req->tfm) == in sahara_queue_manage()
1057 ahash_request_cast(async_req); in sahara_queue_manage()
1062 skcipher_request_cast(async_req); in sahara_queue_manage()
1067 async_req->complete(async_req, ret); in sahara_queue_manage()
Ds5p-sss.c1376 struct crypto_async_request *async_req, *backlog; in s5p_hash_handle_queue() local
1392 async_req = crypto_dequeue_request(&dd->hash_queue); in s5p_hash_handle_queue()
1393 if (async_req) in s5p_hash_handle_queue()
1398 if (!async_req) in s5p_hash_handle_queue()
1404 req = ahash_request_cast(async_req); in s5p_hash_handle_queue()
1980 struct crypto_async_request *async_req, *backlog; in s5p_tasklet_cb() local
1986 async_req = crypto_dequeue_request(&dev->queue); in s5p_tasklet_cb()
1988 if (!async_req) { in s5p_tasklet_cb()
1998 dev->req = skcipher_request_cast(async_req); in s5p_tasklet_cb()
Dimg-hash.c502 struct crypto_async_request *async_req, *backlog; in img_hash_handle_queue() local
518 async_req = crypto_dequeue_request(&hdev->queue); in img_hash_handle_queue()
519 if (async_req) in img_hash_handle_queue()
524 if (!async_req) in img_hash_handle_queue()
530 req = ahash_request_cast(async_req); in img_hash_handle_queue()
Datmel-tdes.c609 struct crypto_async_request *async_req, *backlog; in atmel_tdes_handle_queue() local
623 async_req = crypto_dequeue_request(&dd->queue); in atmel_tdes_handle_queue()
624 if (async_req) in atmel_tdes_handle_queue()
628 if (!async_req) in atmel_tdes_handle_queue()
634 req = skcipher_request_cast(async_req); in atmel_tdes_handle_queue()
Dhifn_795x.c1915 struct crypto_async_request *async_req; in hifn_flush() local
1931 while ((async_req = crypto_dequeue_request(&dev->queue))) { in hifn_flush()
1932 req = skcipher_request_cast(async_req); in hifn_flush()
2042 struct crypto_async_request *async_req, *backlog; in hifn_process_queue() local
2050 async_req = crypto_dequeue_request(&dev->queue); in hifn_process_queue()
2053 if (!async_req) in hifn_process_queue()
2059 req = skcipher_request_cast(async_req); in hifn_process_queue()
/kernel/linux/linux-5.10/drivers/net/usb/
Drtl8150.c141 struct async_req { struct
169 struct async_req *req = (struct async_req *)urb->context; in async_set_reg_cb()
182 struct async_req *req; in async_set_registers()
184 req = kmalloc(sizeof(struct async_req), GFP_ATOMIC); in async_set_registers()
/kernel/linux/linux-5.10/drivers/nvme/host/
Dtcp.c167 struct nvme_tcp_request async_req; member
214 return req == &req->queue->ctrl->async_req; in nvme_tcp_async_req()
1241 struct nvme_tcp_request *async = &ctrl->async_req; in nvme_tcp_free_async_req()
1249 struct nvme_tcp_request *async = &ctrl->async_req; in nvme_tcp_alloc_async_req()
1666 if (to_tcp_ctrl(ctrl)->async_req.pdu) { in nvme_tcp_free_admin_queue()
1669 to_tcp_ctrl(ctrl)->async_req.pdu = NULL; in nvme_tcp_free_admin_queue()
2232 struct nvme_tcp_cmd_pdu *pdu = ctrl->async_req.pdu; in nvme_tcp_submit_async_event()
2248 ctrl->async_req.state = NVME_TCP_SEND_CMD_PDU; in nvme_tcp_submit_async_event()
2249 ctrl->async_req.offset = 0; in nvme_tcp_submit_async_event()
2250 ctrl->async_req.curr_bio = NULL; in nvme_tcp_submit_async_event()
[all …]
/kernel/linux/linux-5.10/drivers/crypto/mediatek/
Dmtk-sha.c654 struct crypto_async_request *async_req, *backlog; in mtk_sha_handle_queue() local
669 async_req = crypto_dequeue_request(&sha->queue); in mtk_sha_handle_queue()
670 if (async_req) in mtk_sha_handle_queue()
674 if (!async_req) in mtk_sha_handle_queue()
680 req = ahash_request_cast(async_req); in mtk_sha_handle_queue()
/kernel/linux/linux-5.10/drivers/crypto/amcc/
Dcrypto4xx_core.h71 struct crypto_async_request *async_req; /* base crypto request member
Dcrypto4xx_core.c527 req = skcipher_request_cast(pd_uinfo->async_req); in crypto4xx_cipher_done()
559 ahash_req = ahash_request_cast(pd_uinfo->async_req); in crypto4xx_ahash_done()
575 struct aead_request *aead_req = container_of(pd_uinfo->async_req, in crypto4xx_aead_done()
640 switch (crypto_tfm_alg_type(pd_uinfo->async_req->tfm)) { in crypto4xx_pd_done()
816 pd_uinfo->async_req = req; in crypto4xx_build_pd()

12