RE: [PATCH 04/13] net/idpf: add queue operations

2022-08-07 Thread Guo, Junfeng
> -Original Message- > From: Stephen Hemminger > Sent: Wednesday, August 3, 2022 23:16 > To: Guo, Junfeng > Cc: Zhang, Qi Z ; Wu, Jingjing > ; Xing, Beilei ; > dev@dpdk.org; Li, Xiaoyun > Subject: Re: [PATCH 04/13] net/idpf: add queue operations > >

Re: [PATCH 04/13] net/idpf: add queue operations

2022-08-03 Thread Stephen Hemminger
On Wed, 3 Aug 2022 19:30:55 +0800 Junfeng Guo wrote: > +static void > +idpf_tx_queue_release(void *txq) > +{ > + struct idpf_tx_queue *q = (struct idpf_tx_queue *)txq; > + > + if (!q) > + return; > + > + if (q->complq) > + rte_free(q->complq); null pointer ch

[PATCH 04/13] net/idpf: add queue operations

2022-08-03 Thread Junfeng Guo
Add support for queue operations: - rx_queue_start - rx_queue_stop - tx_queue_start - tx_queue_stop - rx_queue_setup - rx_queue_release - tx_queue_setup - tx_queue_release Signed-off-by: Beilei Xing Signed-off-by: Xiaoyun Li Signed-