netxen: Correct off-by-one errors in bounds checks
authorDavid Gibson <david@gibson.dropbear.id.au>
Fri, 20 Dec 2013 04:10:44 +0000 (15:10 +1100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 27 Dec 2013 18:08:25 +0000 (13:08 -0500)
commit4710b2ba873692194c636811ceda398f95e02db2
treef1d123b07ed76f251292b6f1a26f0bda98122068
parent73409f3b0ff0ae7bc1f647936b23e6d5d5dcbe28
netxen: Correct off-by-one errors in bounds checks

netxen_process_lro() contains two bounds checks.  One for the ring number
against the number of rings, and one for the Rx buffer ID against the
array of receive buffers.

Both of these have off-by-one errors, using > instead of >=. The correct
versions are used in netxen_process_rcv(), they're just wrong in
netxen_process_lro().

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qlogic/netxen/netxen_nic_init.c