[dpdk-dev] [PATCH] ixgbe: fix unused value

2016-06-27 Thread Bruce Richardson
On Mon, Jun 27, 2016 at 05:29:35PM +0100, Bruce Richardson wrote: > On Thu, Jun 02, 2016 at 06:01:22PM +0200, Daniel Mrzyglod wrote: > > An assigned value that is never used may represent unnecessary computation, > > an incorrect algorithm, or possibly the need for cleanup or refactoring. > > > >

[dpdk-dev] [PATCH] ixgbe: fix unused value

2016-06-02 Thread Daniel Mrzyglod
An assigned value that is never used may represent unnecessary computation, an incorrect algorithm, or possibly the need for cleanup or refactoring. In reassemble_packets: A value assigned to a variable is never used. Fixes: cf4b4708a88a ("ixgbe: improve slow-path perf with vector scattered Rx")