| /spdk/test/unit/lib/accel/accel.c/ |
| H A D | accel_ut.c | 695 struct iovec src_iovs[2], dst_iovs[2]; in test_sequence_fill_copy() 728 src_iovs[0].iov_base = tmp[0]; in test_sequence_fill_copy() 729 src_iovs[0].iov_len = sizeof(tmp[0]); in test_sequence_fill_copy() 732 &src_iovs[0], 1, NULL, NULL, in test_sequence_fill_copy() 785 src_iovs[0].iov_base = tmp[0]; in test_sequence_fill_copy() 786 src_iovs[0].iov_len = sizeof(tmp[0]); in test_sequence_fill_copy() 788 &src_iovs[0], 1, NULL, NULL, in test_sequence_fill_copy() 794 src_iovs[1].iov_base = tmp[1]; in test_sequence_fill_copy() 795 src_iovs[1].iov_len = sizeof(tmp[1]); in test_sequence_fill_copy() 797 &src_iovs[ in test_sequence_fill_copy() 678 struct iovec src_iovs[2], dst_iovs[2]; test_sequence_fill_copy() local 870 struct iovec src_iovs[2], dst_iovs[2]; test_sequence_abort() local 940 struct iovec src_iovs, dst_iovs; test_sequence_append_error() local 1014 struct iovec *src_iovs; global() member 1077 struct iovec src_iovs, dst_iovs; test_sequence_completion_error() local 1230 struct iovec src_iovs[2], dst_iovs[2]; test_sequence_decompress() local 1356 struct iovec src_iovs[2], dst_iovs[2]; test_sequence_reverse() local 1534 struct iovec src_iovs[4], dst_iovs[4], exp_iovs[2]; test_sequence_copy_elision() local 2009 struct iovec src_iovs[3], dst_iovs[3]; test_sequence_accel_buffers() local 2493 struct iovec src_iovs[2], dst_iovs[2]; test_sequence_memory_domain() local 2831 struct iovec *src_iovs, *dst_iovs; ut_submit_decompress_memory_domain() local 2868 struct iovec src_iovs[2], dst_iovs[2]; test_sequence_module_memory_domain() local 3027 struct iovec src_iovs[4], dst_iovs[4]; test_sequence_crypto() local 3295 struct iovec src_iovs[3], dst_iovs[3]; test_sequence_driver() local 3879 struct iovec src_iovs[4], dst_iovs[4]; test_sequence_crc32() local [all...] |
| /spdk/test/accel/dif/ |
| H A D | dif.c | 36 struct iovec *src_iovs; member 83 struct iovec *src_iovs; 127 task->src_iovs = calloc(task->src_iovcnt, sizeof(struct iovec)); in alloc_dif_verify_bufs() 128 if (spdk_unlikely(task->src_iovs == NULL)) { in alloc_dif_verify_bufs() 135 task->src_iovs[i].iov_base = spdk_dma_zmalloc(src_buff_len, 0, NULL); in alloc_dif_verify_bufs() 136 if (spdk_unlikely(task->src_iovs[i].iov_base == NULL)) { in alloc_dif_verify_bufs() 140 memset(task->src_iovs[i].iov_base, DATA_PATTERN, src_buff_len); in alloc_dif_verify_bufs() 141 task->src_iovs[i].iov_len = src_buff_len; in alloc_dif_verify_bufs() 157 task->src_iovs = calloc(task->src_iovcnt, sizeof(struct iovec)); 158 if (spdk_unlikely(task->src_iovs 79 struct iovec *src_iovs; global() member [all...] |
| /spdk/test/unit/lib/accel/dpdk_compressdev.c/ |
| H A D | accel_dpdk_compressdev_ut.c | 502 struct iovec src_iovs[3] = {}; in test_compress_operation() 514 src_iovs[i].iov_len = 0x1000; in test_compress_operation() 516 src_iovs[i].iov_base = (void *)0x10000000 + 0x1000 * i; in test_compress_operation() 525 task.s.iovs = src_iovs; in test_compress_operation() 575 ut_expected_op.src.length = src_iovs[0].iov_len + src_iovs[1].iov_len + src_iovs[2].iov_len; in test_compress_operation() 583 exp_src_mbuf[i]->buf_addr = src_iovs[i].iov_base; in test_compress_operation() 584 exp_src_mbuf[i]->buf_iova = spdk_vtophys(src_iovs[i].iov_base, &src_iovs[ in test_compress_operation() 499 struct iovec src_iovs[3] = {}; test_compress_operation() local 622 struct iovec src_iovs[3] = {}; test_compress_operation_cross_boundary() local 790 struct iovec src_iovs = {}; test_setup_compress_mbuf() local 860 struct iovec src_iovs[3] = {}; test_poller() local [all...] |
| /spdk/test/external_code/accel/ |
| H A D | module.c | 20 struct iovec *src_iovs, uint32_t src_iovcnt) in ex_accel_copy_iovs() argument 26 for (len = spdk_ioviter_first(&iter, src_iovs, src_iovcnt, in ex_accel_copy_iovs() 37 ex_accel_compare(struct iovec *src_iovs, uint32_t src_iovcnt, in ex_accel_compare() argument 44 if (spdk_unlikely(src_iovs[0].iov_len != src2_iovs[0].iov_len)) { in ex_accel_compare() 48 return memcmp(src_iovs[0].iov_base, src2_iovs[0].iov_base, src_iovs[0].iov_len); in ex_accel_compare()
|
| /spdk/module/bdev/compress/ |
| H A D | vbdev_compress.c | 127 _compress_operation(struct spdk_reduce_backing_dev *backing_dev, struct iovec *src_iovs, in _compress_operation() 139 dst_iovs[0].iov_len, src_iovs, src_iovcnt, in _compress_operation() 145 src_iovs, src_iovcnt, comp_bdev->comp_algo, in _compress_operation() 156 struct iovec *src_iovs, int src_iovcnt, in _comp_reduce_compress() 162 rc = _compress_operation(dev, src_iovs, src_iovcnt, dst_iovs, dst_iovcnt, true, cb_arg); in _comp_reduce_compress() 172 struct iovec *src_iovs, int src_iovcnt, in _comp_reduce_decompress() 178 rc = _compress_operation(dev, src_iovs, src_iovcnt, dst_iovs, dst_iovcnt, false, cb_arg); in _comp_reduce_decompress() 125 _compress_operation(struct spdk_reduce_backing_dev * backing_dev,struct iovec * src_iovs,int src_iovcnt,struct iovec * dst_iovs,int dst_iovcnt,bool compress,void * cb_arg) _compress_operation() argument 151 _comp_reduce_compress(struct spdk_reduce_backing_dev * dev,struct iovec * src_iovs,int src_iovcnt,struct iovec * dst_iovs,int dst_iovcnt,struct spdk_reduce_vol_cb_args * cb_arg) _comp_reduce_compress() argument 167 _comp_reduce_decompress(struct spdk_reduce_backing_dev * dev,struct iovec * src_iovs,int src_iovcnt,struct iovec * dst_iovs,int dst_iovcnt,struct spdk_reduce_vol_cb_args * cb_arg) _comp_reduce_decompress() argument
|
| /spdk/test/unit/lib/bdev/compress.c/ |
| H A D | compress_ut.c | 194 struct iovec *src_iovs, size_t src_iovcnt, in spdk_accel_submit_decompress() 204 size_t dst_iovcnt, struct iovec *src_iovs, size_t src_iovcnt, in test_setup() 181 spdk_accel_submit_compress(struct spdk_io_channel * ch,void * dst,uint64_t nbytes,struct iovec * src_iovs,size_t src_iovcnt,uint32_t * output_size,spdk_accel_completion_cb cb_fn,void * cb_arg) spdk_accel_submit_compress() argument 190 spdk_accel_submit_decompress(struct spdk_io_channel * ch,struct iovec * dst_iovs,size_t dst_iovcnt,struct iovec * src_iovs,size_t src_iovcnt,uint32_t * output_size,spdk_accel_completion_cb cb_fn,void * cb_arg) spdk_accel_submit_decompress() argument
|
| /spdk/module/accel/dpdk_compressdev/ |
| H A D | accel_dpdk_compressdev.c | 438 struct iovec *src_iovs = task->s.iovs; in _compress_operation() 453 src_mbuf_total += spdk_divide_round_up(src_iovs[i].iov_len, MBUF_SPLIT); in _compress_operation() 484 src_iovs, src_iovcnt, task); in _compress_operation() 428 struct iovec *src_iovs = task->s.iovs; _compress_operation() local
|
| /spdk/test/unit/lib/bdev/crypto.c/ |
| H A D | crypto_ut.c | 62 struct iovec *src_iovs, uint32_t src_iovcnt, struct spdk_memory_domain *src_domain, 69 struct iovec *src_iovs, uint32_t src_iovcnt, struct spdk_memory_domain *src_domain,
|
| /spdk/test/unit/lib/bdev/part.c/ |
| H A D | part_ut.c | |
| /spdk/test/unit/lib/bdev/mt/bdev.c/ |
| H A D | bdev_ut.c | |
| /spdk/test/unit/lib/bdev/bdev.c/ |
| H A D | bdev_ut.c | |