Commit 077887c3 authored by Alexander Duyck's avatar Alexander Duyck Committed by Jeff Kirsher

igb: add support for NETIF_F_RXHASH

This patch adds support for Rx hashing.
Signed-off-by: default avatarAlexander Duyck <alexander.h.duyck@intel.com>
Tested-by: default avatarAaron Brown  <aaron.f.brown@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 6d095fa8
...@@ -1978,23 +1978,32 @@ static int __devinit igb_probe(struct pci_dev *pdev, ...@@ -1978,23 +1978,32 @@ static int __devinit igb_probe(struct pci_dev *pdev,
dev_info(&pdev->dev, dev_info(&pdev->dev,
"PHY reset is blocked due to SOL/IDER session.\n"); "PHY reset is blocked due to SOL/IDER session.\n");
netdev->hw_features = NETIF_F_SG | /*
* features is initialized to 0 in allocation, it might have bits
* set by igb_sw_init so we should use an or instead of an
* assignment.
*/
netdev->features |= NETIF_F_SG |
NETIF_F_IP_CSUM | NETIF_F_IP_CSUM |
NETIF_F_IPV6_CSUM | NETIF_F_IPV6_CSUM |
NETIF_F_TSO | NETIF_F_TSO |
NETIF_F_TSO6 | NETIF_F_TSO6 |
NETIF_F_RXHASH |
NETIF_F_RXCSUM | NETIF_F_RXCSUM |
NETIF_F_HW_VLAN_RX; NETIF_F_HW_VLAN_RX |
NETIF_F_HW_VLAN_TX;
/* copy netdev features into list of user selectable features */
netdev->hw_features |= netdev->features;
netdev->features = netdev->hw_features | /* set this bit last since it cannot be part of hw_features */
NETIF_F_HW_VLAN_TX | netdev->features |= NETIF_F_HW_VLAN_FILTER;
NETIF_F_HW_VLAN_FILTER;
netdev->vlan_features |= NETIF_F_TSO; netdev->vlan_features |= NETIF_F_TSO |
netdev->vlan_features |= NETIF_F_TSO6; NETIF_F_TSO6 |
netdev->vlan_features |= NETIF_F_IP_CSUM; NETIF_F_IP_CSUM |
netdev->vlan_features |= NETIF_F_IPV6_CSUM; NETIF_F_IPV6_CSUM |
netdev->vlan_features |= NETIF_F_SG; NETIF_F_SG;
if (pci_using_dac) { if (pci_using_dac) {
netdev->features |= NETIF_F_HIGHDMA; netdev->features |= NETIF_F_HIGHDMA;
...@@ -5827,6 +5836,14 @@ static inline void igb_rx_checksum(struct igb_ring *ring, ...@@ -5827,6 +5836,14 @@ static inline void igb_rx_checksum(struct igb_ring *ring,
le32_to_cpu(rx_desc->wb.upper.status_error)); le32_to_cpu(rx_desc->wb.upper.status_error));
} }
static inline void igb_rx_hash(struct igb_ring *ring,
union e1000_adv_rx_desc *rx_desc,
struct sk_buff *skb)
{
if (ring->netdev->features & NETIF_F_RXHASH)
skb->rxhash = le32_to_cpu(rx_desc->wb.lower.hi_dword.rss);
}
static void igb_rx_hwtstamp(struct igb_q_vector *q_vector, static void igb_rx_hwtstamp(struct igb_q_vector *q_vector,
union e1000_adv_rx_desc *rx_desc, union e1000_adv_rx_desc *rx_desc,
struct sk_buff *skb) struct sk_buff *skb)
...@@ -5959,6 +5976,7 @@ static bool igb_clean_rx_irq(struct igb_q_vector *q_vector, int budget) ...@@ -5959,6 +5976,7 @@ static bool igb_clean_rx_irq(struct igb_q_vector *q_vector, int budget)
} }
igb_rx_hwtstamp(q_vector, rx_desc, skb); igb_rx_hwtstamp(q_vector, rx_desc, skb);
igb_rx_hash(rx_ring, rx_desc, skb);
igb_rx_checksum(rx_ring, rx_desc, skb); igb_rx_checksum(rx_ring, rx_desc, skb);
if (igb_test_staterr(rx_desc, E1000_RXD_STAT_VP)) { if (igb_test_staterr(rx_desc, E1000_RXD_STAT_VP)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment