app/testpmd: fix Tx first with LSC interrupt
authorDavid Hunt <david.hunt@intel.com>
Tue, 25 Jul 2017 10:27:52 +0000 (11:27 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 3 Aug 2017 21:42:08 +0000 (23:42 +0200)
commit8820cba4d9cc2b055400e49af617a1a21beb724f
tree3d3dc2b1c4f67c7f1daa4ab5bef044ec7e0b5d94
parent845efa4889b3fbcd375fe8c303fe5c90f8ed9d81
app/testpmd: fix Tx first with LSC interrupt

The lsc_interrupt flag is enabled by default, and when the --tx-first is
used as a command line parameter, the 32 packets can be sent out before
the link state is up, resulting in the loss of the packets, and no further
forwarding will take place.

E.g. ./build/app/testpmd -c f0 -- --tx-first --stats-period 1

When the --tx-first is used, the lsc_interrupt flag needs to be disabled,
ensuring the links are up before forwarding traffic.  Therefore, during the
parameter checking at startup, if --tx-first is used, we now warn the user,
and set lsc_interrupt to 0.

Fixes: 99cabef08855 ("app/testpmd: add parameter to start forwarding Tx first")

Signed-off-by: David Hunt <david.hunt@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
app/test-pmd/testpmd.c