Hi Yanglong, You should write something after SoB, which makes reviewer easier to know What changes are since last version.
Thanks Zhiyong > -----Original Message----- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Yanglong Wu > Sent: Monday, November 20, 2017 10:26 AM > To: dev@dpdk.org > Cc: Wu, Yanglong <yanglong...@intel.com> > Subject: [dpdk-dev] [PATCH v3] net/ixgbe: fix l3fwd start failed on VF > > VF can't run in multi queue mode, if nb_q_per_pool was set as 1. > Nb_q_per_pool is passed through to max_rx_q and max_tx_q in VF. > So if nb_q_per_pool is equal to 1, max_rx_q and max_tx_q can't be more than 1 > and VF multi queue mode will fail. > > Fixes: 27b609cbd1c6 (ethdev: move the multi-queue mode check) > > Signed-off-by: Yanglong Wu <yanglong...@intel.com> > --- Changes in V3: