Home
last modified time | relevance | path

Searched refs:rte_dma_completed (Results 1 – 8 of 8) sorted by relevance

/dpdk/app/test/
H A Dtest_dmadev.c124 int ret = rte_dma_completed(dev_id, vchan, half_len, NULL, &dma_err); in do_multi_copies()
129 ret = rte_dma_completed(dev_id, vchan, half_len, NULL, &dma_err); in do_multi_copies()
158 rte_dma_completed(dev_id, vchan, RTE_DIM(srcs), NULL, &dma_err); in do_multi_copies()
211 if (rte_dma_completed(dev_id, vchan, 1, &id, NULL) != 1) in test_enqueue_copies()
222 if (rte_dma_completed(dev_id, 0, 1, NULL, NULL) != 0) in test_enqueue_copies()
254 count = rte_dma_completed(dev_id, vchan, max_ops * 2, &id, NULL); in test_enqueue_copies()
318 count = rte_dma_completed(dev_id, vchan, COMP_BURST_SZ, &idx, &error); in test_failure_in_full_burst()
405 uint16_t n = rte_dma_completed(dev_id, vchan, 1, &idx, &error); in test_individual_status_query_with_failure()
467 count = rte_dma_completed(dev_id, vchan, COMP_BURST_SZ, &idx, &error); in test_single_item_status_query_with_failure()
653 if (rte_dma_completed(dev_id, vchan, 1, NULL, NULL) != 1) in test_enqueue_fill()
[all …]
H A Dtest_dmadev_api.c448 cpl_ret = rte_dma_completed(test_dev_id, 0, 1, &last_idx, &has_error); in test_dma_completed()
455 cpl_ret = rte_dma_completed(test_dev_id, 0, 1, &last_idx, &has_error); in test_dma_completed()
470 cpl_ret = rte_dma_completed(test_dev_id, 0, 1, &last_idx, &has_error); in test_dma_completed()
/dpdk/doc/guides/prog_guide/
H A Ddmadev.rst102 There are two dequeue APIs ``rte_dma_completed`` and
104 enqueue requests. ``rte_dma_completed`` will return the number of successfully
/dpdk/doc/guides/dmadevs/
H A Dioat.rst98 When gathering completions, ``rte_dma_completed()`` should be used, up until the point an error
123 count = rte_dma_completed(dev_id, vchan, COMP_BURST_SZ, &idx, &error);
H A Didxd.rst186 When gathering completions, ``rte_dma_completed()`` should be used, up until the point an error
210 count = rte_dma_completed(dev_id, vchan, COMP_BURST_SZ, &idx, &error);
/dpdk/lib/dmadev/
H A Drte_dmadev.h1024 rte_dma_completed(int16_t dev_id, uint16_t vchan, const uint16_t nb_cpls, in rte_dma_completed() function
/dpdk/examples/dma/
H A Ddmafwd.c370 nb_dq = rte_dma_completed(dev_id, 0, num, NULL, NULL); in dma_dequeue()
/dpdk/lib/vhost/
H A Dvirtio_net.c148 nr_copies = rte_dma_completed(dma_id, vchan_id, max_pkts, &last_idx, &has_error); in vhost_async_dma_check_completed()