|
|
@@ -1581,7 +1581,7 @@ static void be_rx_compl_process(struct be_rx_obj *rxo, struct napi_struct *napi,
|
|
|
skb->protocol = eth_type_trans(skb, netdev);
|
|
|
skb_record_rx_queue(skb, rxo - &adapter->rx_obj[0]);
|
|
|
if (netdev->features & NETIF_F_RXHASH)
|
|
|
- skb->rxhash = rxcp->rss_hash;
|
|
|
+ skb_set_hash(skb, rxcp->rss_hash, PKT_HASH_TYPE_L3);
|
|
|
skb_mark_napi_id(skb, napi);
|
|
|
|
|
|
if (rxcp->vlanf)
|
|
|
@@ -1639,7 +1639,7 @@ static void be_rx_compl_process_gro(struct be_rx_obj *rxo,
|
|
|
skb->ip_summed = CHECKSUM_UNNECESSARY;
|
|
|
skb_record_rx_queue(skb, rxo - &adapter->rx_obj[0]);
|
|
|
if (adapter->netdev->features & NETIF_F_RXHASH)
|
|
|
- skb->rxhash = rxcp->rss_hash;
|
|
|
+ skb_set_hash(skb, rxcp->rss_hash, PKT_HASH_TYPE_L3);
|
|
|
skb_mark_napi_id(skb, napi);
|
|
|
|
|
|
if (rxcp->vlanf)
|