examples/load_balancer: fix Tx flush
Port ID is not an index from 0 to n_nic_ports, but rather a value of nic_ports array. Fixes: af75078fece3 ("first public release") Signed-off-by: Andriy Berestovskyy <andriy.berestovskyy@caviumnetworks.com>
This commit is contained in:
parent
4175729d01
commit
509f35d4c4
@ -420,10 +420,12 @@ static inline void
|
||||
app_lcore_io_tx_flush(struct app_lcore_params_io *lp)
|
||||
{
|
||||
uint8_t port;
|
||||
uint32_t i;
|
||||
|
||||
for (port = 0; port < lp->tx.n_nic_ports; port ++) {
|
||||
for (i = 0; i < lp->tx.n_nic_ports; i++) {
|
||||
uint32_t n_pkts;
|
||||
|
||||
port = lp->tx.nic_ports[i];
|
||||
if (likely((lp->tx.mbuf_out_flush[port] == 0) ||
|
||||
(lp->tx.mbuf_out[port].n_mbufs == 0))) {
|
||||
lp->tx.mbuf_out_flush[port] = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user