Tested-by: Peng Yuan <[email protected]>
> -----Original Message----- > From: Zhao1, Wei > Sent: Thursday, May 9, 2019 3:21 PM > To: [email protected] > Cc: [email protected]; Peng, Yuan <[email protected]>; Yigit, Ferruh > <[email protected]>; Lu, Wenzhuo <[email protected]>; Zhao1, Wei > <[email protected]> > Subject: [PATCH] app/testpmd: fix offloads overwrite by default configuration > > There is an error in function rxtx_port_config(), which may overwrite offloads > configuration get from function launch_args_parse() when run testpmd app. So > rxtx_port_config() should do "or" for port offloads. > > Fixes: d44f8a485f5d ("app/testpmd: enable per queue configure") > cc: [email protected] > > Signed-off-by: Wei Zhao <[email protected]> > --- > app/test-pmd/testpmd.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index > 6fbfd29..f0061d9 100644 > --- a/app/test-pmd/testpmd.c > +++ b/app/test-pmd/testpmd.c > @@ -2809,9 +2809,12 @@ static void > rxtx_port_config(struct rte_port *port) { > uint16_t qid; > + uint64_t offloads; > > for (qid = 0; qid < nb_rxq; qid++) { > + offloads = port->rx_conf[qid].offloads; > port->rx_conf[qid] = port->dev_info.default_rxconf; > + port->rx_conf[qid].offloads |= offloads; > > /* Check if any Rx parameters have been passed */ > if (rx_pthresh != RTE_PMD_PARAM_UNSET) @@ -2833,7 > +2836,9 @@ rxtx_port_config(struct rte_port *port) > } > > for (qid = 0; qid < nb_txq; qid++) { > + offloads = port->tx_conf[qid].offloads; > port->tx_conf[qid] = port->dev_info.default_txconf; > + port->tx_conf[qid].offloads |= offloads; > > /* Check if any Tx parameters have been passed */ > if (tx_pthresh != RTE_PMD_PARAM_UNSET) > -- > 2.7.5

