Re: [dpdk-dev] [PATCH v6] net/ixgbe: fix tx_q check failed on PF

2018-01-09 Thread Zhang, Helin
> -Original Message- > From: Ananyev, Konstantin > Sent: Wednesday, January 10, 2018 9:57 AM > To: Wu, Yanglong; dev@dpdk.org; Zhang, Helin > Subject: RE: [PATCH v6] net/ixgbe: fix tx_q check failed on PF > > > > > -Original Message- > > From: Wu, Yanglong > > Sent: Wednesday,

Re: [dpdk-dev] [PATCH v6] net/ixgbe: fix tx_q check failed on PF

2018-01-09 Thread Ananyev, Konstantin
> -Original Message- > From: Wu, Yanglong > Sent: Wednesday, January 10, 2018 1:52 AM > To: dev@dpdk.org; Ananyev, Konstantin ; Zhang, > Helin > Cc: Wu, Yanglong > Subject: [PATCH v6] net/ixgbe: fix tx_q check failed on PF > > Tx_q check failed on PF that occurred when the SRIOV is ac

[dpdk-dev] [PATCH v6] net/ixgbe: fix tx_q check failed on PF

2018-01-09 Thread Yanglong Wu
Tx_q check failed on PF that occurred when the SRIOV is active and tx_q > rx_q. The tx_q is equal to nb_q_per_pool. The number of nb_q_per_pool should equeal to max number of queues supported by HW not nb_rx_q. Fixes: 27b609cbd1c6 (ethdev: move the multi-queue mode check to specific drivers) Si