aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Duyck <alexander.h.duyck@intel.com>2012-02-11 02:18:57 -0500
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2012-03-19 16:43:34 -0400
commit567d2de291b5ddb83654c5e87c14b4c6fa7216ed (patch)
treedb6880b7bf8ced1a59c1ea47d60ae22408292914
parentef6afc0caceebb3b49cd384f8c634f89f5089997 (diff)
ixgbe: Correct flag values set by ixgbe_fix_features
This patch replaces the variable name data with the variable name features for ixgbe_fix_features and ixgbe_set_features. This helps to make some issues more obvious such as the fact that we were disabling Rx VLAN tag stripping when we should have been forcing it to be enabled when DCB is enabled. In addition there was deprecated code present that was disabling the LRO flag if we had the itr value set too low. I have updated this logic so that we will now allow the LRO flag to be set, but will not enable RSC until the rx-usecs value is high enough to allow enough time for Rx packet coalescing. Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Tested-by: Stephen Ko <stephen.s.ko@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
-rw-r--r--drivers/net/ethernet/intel/ixgbe/ixgbe.h2
-rw-r--r--drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c38
-rw-r--r--drivers/net/ethernet/intel/ixgbe/ixgbe_main.c75
3 files changed, 54 insertions, 61 deletions
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe.h b/drivers/net/ethernet/intel/ixgbe/ixgbe.h
index 4ceac3a09d09..e0cc3118234e 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe.h
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe.h
@@ -101,8 +101,6 @@
101#define IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT 29 101#define IXGBE_TX_FLAGS_VLAN_PRIO_SHIFT 29
102#define IXGBE_TX_FLAGS_VLAN_SHIFT 16 102#define IXGBE_TX_FLAGS_VLAN_SHIFT 16
103 103
104#define IXGBE_MAX_RSC_INT_RATE 162760
105
106#define IXGBE_MAX_VF_MC_ENTRIES 30 104#define IXGBE_MAX_VF_MC_ENTRIES 30
107#define IXGBE_MAX_VF_FUNCTIONS 64 105#define IXGBE_MAX_VF_FUNCTIONS 64
108#define IXGBE_MAX_VFTA_ENTRIES 128 106#define IXGBE_MAX_VFTA_ENTRIES 128
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
index b64d8a2adb42..31a2bf76a346 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
@@ -2137,31 +2137,29 @@ static int ixgbe_get_coalesce(struct net_device *netdev,
2137 * this function must be called before setting the new value of 2137 * this function must be called before setting the new value of
2138 * rx_itr_setting 2138 * rx_itr_setting
2139 */ 2139 */
2140static bool ixgbe_update_rsc(struct ixgbe_adapter *adapter, 2140static bool ixgbe_update_rsc(struct ixgbe_adapter *adapter)
2141 struct ethtool_coalesce *ec)
2142{ 2141{
2143 struct net_device *netdev = adapter->netdev; 2142 struct net_device *netdev = adapter->netdev;
2144 2143
2145 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) 2144 /* nothing to do if LRO or RSC are not enabled */
2145 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) ||
2146 !(netdev->features & NETIF_F_LRO))
2146 return false; 2147 return false;
2147 2148
2148 /* if interrupt rate is too high then disable RSC */ 2149 /* check the feature flag value and enable RSC if necessary */
2149 if (ec->rx_coalesce_usecs != 1 && 2150 if (adapter->rx_itr_setting == 1 ||
2150 ec->rx_coalesce_usecs <= (IXGBE_MIN_RSC_ITR >> 2)) { 2151 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
2151 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) { 2152 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
2152 e_info(probe, "rx-usecs set too low, disabling RSC\n");
2153 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
2154 return true;
2155 }
2156 } else {
2157 /* check the feature flag value and enable RSC if necessary */
2158 if ((netdev->features & NETIF_F_LRO) &&
2159 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
2160 e_info(probe, "rx-usecs set to %d, re-enabling RSC\n",
2161 ec->rx_coalesce_usecs);
2162 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED; 2153 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
2154 e_info(probe, "rx-usecs value high enough "
2155 "to re-enable RSC\n");
2163 return true; 2156 return true;
2164 } 2157 }
2158 /* if interrupt rate is too high then disable RSC */
2159 } else if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) {
2160 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
2161 e_info(probe, "rx-usecs set too low, disabling RSC\n");
2162 return true;
2165 } 2163 }
2166 return false; 2164 return false;
2167} 2165}
@@ -2185,9 +2183,6 @@ static int ixgbe_set_coalesce(struct net_device *netdev,
2185 (ec->tx_coalesce_usecs > (IXGBE_MAX_EITR >> 2))) 2183 (ec->tx_coalesce_usecs > (IXGBE_MAX_EITR >> 2)))
2186 return -EINVAL; 2184 return -EINVAL;
2187 2185
2188 /* check the old value and enable RSC if necessary */
2189 need_reset = ixgbe_update_rsc(adapter, ec);
2190
2191 if (ec->rx_coalesce_usecs > 1) 2186 if (ec->rx_coalesce_usecs > 1)
2192 adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2; 2187 adapter->rx_itr_setting = ec->rx_coalesce_usecs << 2;
2193 else 2188 else
@@ -2208,6 +2203,9 @@ static int ixgbe_set_coalesce(struct net_device *netdev,
2208 else 2203 else
2209 tx_itr_param = adapter->tx_itr_setting; 2204 tx_itr_param = adapter->tx_itr_setting;
2210 2205
2206 /* check the old value and enable RSC if necessary */
2207 need_reset = ixgbe_update_rsc(adapter);
2208
2211 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED) 2209 if (adapter->flags & IXGBE_FLAG_MSIX_ENABLED)
2212 num_vectors = adapter->num_msix_vectors - NON_Q_VECTORS; 2210 num_vectors = adapter->num_msix_vectors - NON_Q_VECTORS;
2213 else 2211 else
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
index 5c7e7d83d394..e9d9fca084a9 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
@@ -7492,54 +7492,52 @@ void ixgbe_do_reset(struct net_device *netdev)
7492} 7492}
7493 7493
7494static netdev_features_t ixgbe_fix_features(struct net_device *netdev, 7494static netdev_features_t ixgbe_fix_features(struct net_device *netdev,
7495 netdev_features_t data) 7495 netdev_features_t features)
7496{ 7496{
7497 struct ixgbe_adapter *adapter = netdev_priv(netdev); 7497 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7498 7498
7499#ifdef CONFIG_DCB 7499#ifdef CONFIG_DCB
7500 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) 7500 if (adapter->flags & IXGBE_FLAG_DCB_ENABLED)
7501 data &= ~NETIF_F_HW_VLAN_RX; 7501 features &= ~NETIF_F_HW_VLAN_RX;
7502#endif 7502#endif
7503 7503
7504 /* return error if RXHASH is being enabled when RSS is not supported */ 7504 /* return error if RXHASH is being enabled when RSS is not supported */
7505 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED)) 7505 if (!(adapter->flags & IXGBE_FLAG_RSS_ENABLED))
7506 data &= ~NETIF_F_RXHASH; 7506 features &= ~NETIF_F_RXHASH;
7507 7507
7508 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */ 7508 /* If Rx checksum is disabled, then RSC/LRO should also be disabled */
7509 if (!(data & NETIF_F_RXCSUM)) 7509 if (!(features & NETIF_F_RXCSUM))
7510 data &= ~NETIF_F_LRO; 7510 features &= ~NETIF_F_LRO;
7511 7511
7512 /* Turn off LRO if not RSC capable or invalid ITR settings */ 7512 /* Turn off LRO if not RSC capable */
7513 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE)) { 7513 if (!(adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE))
7514 data &= ~NETIF_F_LRO; 7514 features &= ~NETIF_F_LRO;
7515 } else if (!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED) && 7515
7516 (adapter->rx_itr_setting != 1 &&
7517 adapter->rx_itr_setting > IXGBE_MAX_RSC_INT_RATE)) {
7518 data &= ~NETIF_F_LRO;
7519 e_info(probe, "rx-usecs set too low, not enabling RSC\n");
7520 }
7521 7516
7522 return data; 7517 return features;
7523} 7518}
7524 7519
7525static int ixgbe_set_features(struct net_device *netdev, 7520static int ixgbe_set_features(struct net_device *netdev,
7526 netdev_features_t data) 7521 netdev_features_t features)
7527{ 7522{
7528 struct ixgbe_adapter *adapter = netdev_priv(netdev); 7523 struct ixgbe_adapter *adapter = netdev_priv(netdev);
7529 netdev_features_t changed = netdev->features ^ data; 7524 netdev_features_t changed = netdev->features ^ features;
7530 bool need_reset = false; 7525 bool need_reset = false;
7531 7526
7532 /* Make sure RSC matches LRO, reset if change */ 7527 /* Make sure RSC matches LRO, reset if change */
7533 if (!!(data & NETIF_F_LRO) != 7528 if (!(features & NETIF_F_LRO)) {
7534 !!(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) { 7529 if (adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)
7535 adapter->flags2 ^= IXGBE_FLAG2_RSC_ENABLED;
7536 switch (adapter->hw.mac.type) {
7537 case ixgbe_mac_X540:
7538 case ixgbe_mac_82599EB:
7539 need_reset = true; 7530 need_reset = true;
7540 break; 7531 adapter->flags2 &= ~IXGBE_FLAG2_RSC_ENABLED;
7541 default: 7532 } else if ((adapter->flags2 & IXGBE_FLAG2_RSC_CAPABLE) &&
7542 break; 7533 !(adapter->flags2 & IXGBE_FLAG2_RSC_ENABLED)) {
7534 if (adapter->rx_itr_setting == 1 ||
7535 adapter->rx_itr_setting > IXGBE_MIN_RSC_ITR) {
7536 adapter->flags2 |= IXGBE_FLAG2_RSC_ENABLED;
7537 need_reset = true;
7538 } else if ((changed ^ features) & NETIF_F_LRO) {
7539 e_info(probe, "rx-usecs set too low, "
7540 "disabling RSC\n");
7543 } 7541 }
7544 } 7542 }
7545 7543
@@ -7547,31 +7545,30 @@ static int ixgbe_set_features(struct net_device *netdev,
7547 * Check if Flow Director n-tuple support was enabled or disabled. If 7545 * Check if Flow Director n-tuple support was enabled or disabled. If
7548 * the state changed, we need to reset. 7546 * the state changed, we need to reset.
7549 */ 7547 */
7550 if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) { 7548 if (!(features & NETIF_F_NTUPLE)) {
7551 /* turn off ATR, enable perfect filters and reset */ 7549 if (adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE) {
7552 if (data & NETIF_F_NTUPLE) { 7550 /* turn off Flow Director, set ATR and reset */
7553 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE; 7551 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) &&
7554 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE; 7552 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED))
7553 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE;
7555 need_reset = true; 7554 need_reset = true;
7556 } 7555 }
7557 } else if (!(data & NETIF_F_NTUPLE)) {
7558 /* turn off Flow Director, set ATR and reset */
7559 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE; 7556 adapter->flags &= ~IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7560 if ((adapter->flags & IXGBE_FLAG_RSS_ENABLED) && 7557 } else if (!(adapter->flags & IXGBE_FLAG_FDIR_PERFECT_CAPABLE)) {
7561 !(adapter->flags & IXGBE_FLAG_DCB_ENABLED)) 7558 /* turn off ATR, enable perfect filters and reset */
7562 adapter->flags |= IXGBE_FLAG_FDIR_HASH_CAPABLE; 7559 adapter->flags &= ~IXGBE_FLAG_FDIR_HASH_CAPABLE;
7560 adapter->flags |= IXGBE_FLAG_FDIR_PERFECT_CAPABLE;
7563 need_reset = true; 7561 need_reset = true;
7564 } 7562 }
7565 7563
7566 if (changed & NETIF_F_RXALL) 7564 if (changed & NETIF_F_RXALL)
7567 need_reset = true; 7565 need_reset = true;
7568 7566
7569 netdev->features = data; 7567 netdev->features = features;
7570 if (need_reset) 7568 if (need_reset)
7571 ixgbe_do_reset(netdev); 7569 ixgbe_do_reset(netdev);
7572 7570
7573 return 0; 7571 return 0;
7574
7575} 7572}
7576 7573
7577static const struct net_device_ops ixgbe_netdev_ops = { 7574static const struct net_device_ops ixgbe_netdev_ops = {
@@ -7611,7 +7608,7 @@ static const struct net_device_ops ixgbe_netdev_ops = {
7611}; 7608};
7612 7609
7613static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter, 7610static void __devinit ixgbe_probe_vf(struct ixgbe_adapter *adapter,
7614 const struct ixgbe_info *ii) 7611 const struct ixgbe_info *ii)
7615{ 7612{
7616#ifdef CONFIG_PCI_IOV 7613#ifdef CONFIG_PCI_IOV
7617 struct ixgbe_hw *hw = &adapter->hw; 7614 struct ixgbe_hw *hw = &adapter->hw;