diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2011-04-01 17:20:06 -0400 |
---|---|---|
committer | Ben Hutchings <bhutchings@solarflare.com> | 2011-04-01 17:20:06 -0400 |
commit | ab3cf6d0f3d2daeef2101a2a97b6c0beee6b70cf (patch) | |
tree | bfb5bcb59d036db722020e94948f37255b093415 /drivers/net/sfc/rx.c | |
parent | 9b12c75bf4d58dd85c987ee7b6a4356fdc7c1222 (diff) |
sfc: Move test of rx_checksum_enabled from nic.c to rx.c
This is preparation for using the generic netdev features interface,
and should have no effect in itself.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Diffstat (limited to 'drivers/net/sfc/rx.c')
-rw-r--r-- | drivers/net/sfc/rx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/sfc/rx.c b/drivers/net/sfc/rx.c index c0fdb59030fb..fb402c52aaff 100644 --- a/drivers/net/sfc/rx.c +++ b/drivers/net/sfc/rx.c | |||
@@ -605,6 +605,9 @@ void __efx_rx_packet(struct efx_channel *channel, | |||
605 | skb_record_rx_queue(skb, channel->channel); | 605 | skb_record_rx_queue(skb, channel->channel); |
606 | } | 606 | } |
607 | 607 | ||
608 | if (unlikely(!efx->rx_checksum_enabled)) | ||
609 | checksummed = false; | ||
610 | |||
608 | if (likely(checksummed || rx_buf->is_page)) { | 611 | if (likely(checksummed || rx_buf->is_page)) { |
609 | efx_rx_packet_gro(channel, rx_buf, eh, checksummed); | 612 | efx_rx_packet_gro(channel, rx_buf, eh, checksummed); |
610 | return; | 613 | return; |