Re: [dpdk-dev] [PATCH v2 0/6] port ioatfwd app to dmadev

2021-09-23 Thread Kevin Laatz
Hi Chengwen, On 23/09/2021 14:53, fengchengwen wrote: Hi Kevin, Can you add the following functions? 1. Add dump dmadev which trigger by signal, like: ... static void dma_dump(void) { uint32_t i, j; if (copy_mode != COPY_MODE_DMA_NUM) return;

Re: [dpdk-dev] [PATCH v2 0/6] port ioatfwd app to dmadev

2021-09-23 Thread fengchengwen
Hi Kevin, Can you add the following functions? 1. Add dump dmadev which trigger by signal, like: ... static void dma_dump(void) { uint32_t i, j; if (copy_mode != COPY_MODE_DMA_NUM) return; for (i = 0; i < cfg.nb_ports; i++) { for (j

[dpdk-dev] [PATCH v2 0/6] port ioatfwd app to dmadev

2021-09-17 Thread Kevin Laatz
This patchset first adds some additional command line options to the existing ioatfwd application to enhance usability. The last 3 patches of this set then port the ioatfwd application to use the dmadev library APIs instead of the IOAT rawdev APIs. Following the port, all variables etc are renamed