[dpdk-dev] [PATCH v4] enic: fix last packet being not sent bug

2016-03-11 Thread Bruce Richardson
On Tue, Mar 08, 2016 at 10:49:07AM -0800, John Daley wrote: > From: johndale > > The last packet of the tx burst function array was not being > emitted until the subsequent call. The nic descriptor index > was being set to the current tx descriptr instead of one past the > the descriptor as requ

[dpdk-dev] [PATCH v4] enic: fix last packet being not sent bug

2016-03-08 Thread John Daley
From: johndale The last packet of the tx burst function array was not being emitted until the subsequent call. The nic descriptor index was being set to the current tx descriptr instead of one past the the descriptor as required by nic. Fixes: d739ba4c6abf ("enic: improve Tx packet rate") Signe