Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d2464c8c authored by Tom Herbert's avatar Tom Herbert Committed by David S. Miller
Browse files

net: emulex-benet calls skb_set_hash



Drivers should call skb_set_hash to set the hash and its type
in an skbuff.

Signed-off-by: default avatarTom Herbert <therbert@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3739acdd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)