Re: [dpdk-dev] [PATCH] net/i40e: fix missing Port Representor data-path callbacks

2018-05-11 Thread Remy Horton
On 11/05/2018 11:48, Mohammad Abdul Awal wrote: [..] +static uint16_t +i40e_vf_representor_tx_burst(__rte_unused void *tx_queue, +struct rte_mbuf **tx_pkts, +uint16_t nb_pkts) +{ +uint16_t idx_pkt; + +for (idx_pkt = 0; idx_pkt < nb_pkts; idx_pkt++) +rte_pktmbuf_free(tx_pk

Re: [dpdk-dev] [PATCH] net/i40e: fix missing Port Representor data-path callbacks

2018-05-11 Thread Mohammad Abdul Awal
On 09/05/2018 16:00, Remy Horton wrote: This patch adds Rx and Tx burst functions to the i40e Port Representors, so that the implementation within this PMD can be tested using applications such as testpmd which require data-path functionality. Fixes: e0cb96204b71 ("net/i40e: add support for re

[dpdk-dev] [PATCH] net/i40e: fix missing Port Representor data-path callbacks

2018-05-09 Thread Remy Horton
This patch adds Rx and Tx burst functions to the i40e Port Representors, so that the implementation within this PMD can be tested using applications such as testpmd which require data-path functionality. Fixes: e0cb96204b71 ("net/i40e: add support for representor ports") Signed-off-by: Remy Horto