diff options
author | PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com> | 2009-03-31 17:33:25 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-04-02 04:02:28 -0400 |
commit | ea4af4f447ecad42f8bffa4bd2278e183ba5ec9d (patch) | |
tree | 61d1b00abf691ca1a5eeee18f409ad01397146bb /drivers/net | |
parent | 7c5b83230a22d0e14375e5f283b8aaf3320ebd86 (diff) |
ixgbe: Fix DCB netlink layer for 82599 to enable Priority Flow Control
The priority flow control settings from the netlink layer aren't taking
effect in the base driver. The boolean pfc_mode_enable in the dcb_config
struct isn't being set, so the hardware configuration code is never
reached.
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_dcb_nl.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_dcb_nl.c b/drivers/net/ixgbe/ixgbe_dcb_nl.c index 0a8731f1f237..bd0a0c276952 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_nl.c +++ b/drivers/net/ixgbe/ixgbe_dcb_nl.c | |||
@@ -90,6 +90,8 @@ int ixgbe_copy_dcb_cfg(struct ixgbe_dcb_config *src_dcb_cfg, | |||
90 | src_dcb_cfg->tc_config[i - DCB_PFC_UP_ATTR_0].dcb_pfc; | 90 | src_dcb_cfg->tc_config[i - DCB_PFC_UP_ATTR_0].dcb_pfc; |
91 | } | 91 | } |
92 | 92 | ||
93 | dst_dcb_cfg->pfc_mode_enable = src_dcb_cfg->pfc_mode_enable; | ||
94 | |||
93 | return 0; | 95 | return 0; |
94 | } | 96 | } |
95 | 97 | ||
@@ -298,8 +300,10 @@ static void ixgbe_dcbnl_set_pfc_cfg(struct net_device *netdev, int priority, | |||
298 | 300 | ||
299 | adapter->temp_dcb_cfg.tc_config[priority].dcb_pfc = setting; | 301 | adapter->temp_dcb_cfg.tc_config[priority].dcb_pfc = setting; |
300 | if (adapter->temp_dcb_cfg.tc_config[priority].dcb_pfc != | 302 | if (adapter->temp_dcb_cfg.tc_config[priority].dcb_pfc != |
301 | adapter->dcb_cfg.tc_config[priority].dcb_pfc) | 303 | adapter->dcb_cfg.tc_config[priority].dcb_pfc) { |
302 | adapter->dcb_set_bitmap |= BIT_PFC; | 304 | adapter->dcb_set_bitmap |= BIT_PFC; |
305 | adapter->temp_dcb_cfg.pfc_mode_enable = true; | ||
306 | } | ||
303 | } | 307 | } |
304 | 308 | ||
305 | static void ixgbe_dcbnl_get_pfc_cfg(struct net_device *netdev, int priority, | 309 | static void ixgbe_dcbnl_get_pfc_cfg(struct net_device *netdev, int priority, |