]> git.baikalelectronics.ru Git - kernel.git/commit
sfc: Fix assignment of ip_summed for pre-allocated skbs
authorBen Hutchings <bhutchings@solarflare.com>
Sat, 25 Feb 2012 00:03:10 +0000 (00:03 +0000)
committerBen Hutchings <bhutchings@solarflare.com>
Sat, 25 Feb 2012 00:10:22 +0000 (00:10 +0000)
commit65198d8e30a52006296acdc887aba78132778064
tree4fb3a0f723e71280315de1a9d2ab15e4cdb6fb66
parent4c59b2264b2e1b9b717a00906e410d874912c0d3
sfc: Fix assignment of ip_summed for pre-allocated skbs

When pre-allocating skbs for received packets, we set ip_summed =
CHECKSUM_UNNCESSARY.  We used to change it back to CHECKSUM_NONE when
the received packet had an incorrect checksum or unhandled protocol.

Commit 51fbb7f51798dc942634c0c42edbdb68433ce53a ('drivers/net: avoid
some skb->ip_summed initializations') mistakenly replaced the latter
assignment with a DEBUG-only assertion that ip_summed ==
CHECKSUM_NONE.  This assertion is always false, but it seems no-one
has exercised this code path in a DEBUG build.

Fix this by moving our assignment of CHECKSUM_UNNECESSARY into
efx_rx_packet_gro().

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
drivers/net/ethernet/sfc/rx.c