Home
last modified time | relevance | path

Searched refs:result_sg (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/virtio/
H A Dvirtio_pci_admin_legacy_io.c115 struct scatterlist data_sg, result_sg; in virtio_pci_admin_legacy_io_read() local
133 sg_init_one(&result_sg, buf, size); in virtio_pci_admin_legacy_io_read()
138 cmd.result_sg = &result_sg; in virtio_pci_admin_legacy_io_read()
202 struct scatterlist result_sg; in virtio_pci_admin_legacy_io_notify_info() local
217 sg_init_one(&result_sg, result, sizeof(*result)); in virtio_pci_admin_legacy_io_notify_info()
221 cmd.result_sg = &result_sg; in virtio_pci_admin_legacy_io_notify_info()
H A Dvirtio_pci_modern.c155 if (cmd->result_sg) { in vp_modern_admin_cmd_exec()
156 sgs[out_num + in_num] = cmd->result_sg; in vp_modern_admin_cmd_exec()
188 struct scatterlist result_sg; in virtio_pci_admin_cmd_list_init() local
197 sg_init_one(&result_sg, data, sizeof(*data)); in virtio_pci_admin_cmd_list_init()
200 cmd.result_sg = &result_sg; in virtio_pci_admin_cmd_list_init()
210 cmd.result_sg = NULL; in virtio_pci_admin_cmd_list_init()
/linux/drivers/crypto/qce/
H A Dsha.c54 dma_unmap_sg(qce->dev, &rctx->result_sg, 1, DMA_FROM_DEVICE); in qce_ahash_done()
103 sg_init_one(&rctx->result_sg, qce->dma.result_buf, QCE_RESULT_BUF_SZ); in qce_ahash_async_req_handle()
105 ret = dma_map_sg(qce->dev, &rctx->result_sg, 1, DMA_FROM_DEVICE); in qce_ahash_async_req_handle()
112 &rctx->result_sg, 1, qce_ahash_done, async_req); in qce_ahash_async_req_handle()
127 dma_unmap_sg(qce->dev, &rctx->result_sg, 1, DMA_FROM_DEVICE); in qce_ahash_async_req_handle()
H A Dcipher.h40 struct scatterlist result_sg; member
H A Dsha.h58 struct scatterlist result_sg; member
H A Daead.h32 struct scatterlist result_sg; member
H A Daead.c99 sg_init_one(&rctx->result_sg, qce->dma.result_buf, QCE_RESULT_BUF_SZ); in qce_aead_prepare_result_buf()
100 return qce_sgtable_add(tbl, &rctx->result_sg, QCE_RESULT_BUF_SZ); in qce_aead_prepare_result_buf()
108 sg_init_one(&rctx->result_sg, rctx->ccmresult_buf, QCE_BAM_BURST_SIZE); in qce_aead_prepare_ccm_result_buf()
109 return qce_sgtable_add(tbl, &rctx->result_sg, QCE_BAM_BURST_SIZE); in qce_aead_prepare_ccm_result_buf()
H A Dskcipher.c108 sg_init_one(&rctx->result_sg, qce->dma.result_buf, QCE_RESULT_BUF_SZ); in qce_skcipher_async_req_handle()
116 sg = qce_sgtable_add(&rctx->dst_tbl, &rctx->result_sg, in qce_skcipher_async_req_handle()
/linux/include/linux/
H A Dvirtio.h112 struct scatterlist *result_sg; member