diff options
-rw-r--r-- | drivers/net/ethernet/sfc/rx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/rx.c b/drivers/net/ethernet/sfc/rx.c index 1fde9b8ac456..48588ddf81b0 100644 --- a/drivers/net/ethernet/sfc/rx.c +++ b/drivers/net/ethernet/sfc/rx.c | |||
@@ -440,7 +440,8 @@ efx_rx_packet_gro(struct efx_channel *channel, struct efx_rx_buffer *rx_buf, | |||
440 | } | 440 | } |
441 | 441 | ||
442 | if (efx->net_dev->features & NETIF_F_RXHASH) | 442 | if (efx->net_dev->features & NETIF_F_RXHASH) |
443 | skb->rxhash = efx_rx_buf_hash(efx, eh); | 443 | skb_set_hash(skb, efx_rx_buf_hash(efx, eh), |
444 | PKT_HASH_TYPE_L3); | ||
444 | skb->ip_summed = ((rx_buf->flags & EFX_RX_PKT_CSUMMED) ? | 445 | skb->ip_summed = ((rx_buf->flags & EFX_RX_PKT_CSUMMED) ? |
445 | CHECKSUM_UNNECESSARY : CHECKSUM_NONE); | 446 | CHECKSUM_UNNECESSARY : CHECKSUM_NONE); |
446 | 447 | ||