ixgbe: DCB, remove round robin mode on 82598 devices
authorJohn Fastabend <john.r.fastabend@intel.com>
Wed, 5 Jan 2011 04:47:38 +0000 (04:47 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 11 Feb 2011 16:43:37 +0000 (08:43 -0800)
Remove round robin configuration code for 82598 parts it
is not settable and is always false.

If we need/want this in the future we can add it back properly.

Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
Tested-by: Ross Brattain <ross.b.brattain@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ixgbe/ixgbe_dcb.h
drivers/net/ixgbe/ixgbe_dcb_82598.c
drivers/net/ixgbe/ixgbe_main.c

index 1cfe38ee16440e0a7c3d6fce1fb858ef18fd68c4..d0b2450781a251ceae0ba69385726bf2166bc1b1 100644 (file)
@@ -139,7 +139,6 @@ struct ixgbe_dcb_config {
        struct tc_configuration tc_config[MAX_TRAFFIC_CLASS];
        u8     bw_percentage[2][MAX_BW_GROUP]; /* One each for Tx/Rx */
        bool   pfc_mode_enable;
-       bool   round_robin_enable;
 
        enum dcb_rx_pba_cfg rx_pba_cfg;
 
index 9a5e89c12e050281af83dbf2b143264fdf974fe3..19aa80640f68243be43ad44c7ca9bf96e3ec4377 100644 (file)
@@ -146,10 +146,8 @@ static s32 ixgbe_dcb_config_tx_desc_arbiter_82598(struct ixgbe_hw *hw,
 
        /* Enable arbiter */
        reg &= ~IXGBE_DPMCS_ARBDIS;
-       if (!(dcb_config->round_robin_enable)) {
-               /* Enable DFP and Recycle mode */
-               reg |= (IXGBE_DPMCS_TDPAC | IXGBE_DPMCS_TRM);
-       }
+       /* Enable DFP and Recycle mode */
+       reg |= (IXGBE_DPMCS_TDPAC | IXGBE_DPMCS_TRM);
        reg |= IXGBE_DPMCS_TSOEF;
        /* Configure Max TSO packet size 34KB including payload and headers */
        reg |= (0x4 << IXGBE_DPMCS_MTSOS_SHIFT);
index fbae703b46d7327fd470c2f8409f501b4ba51f4b..1e4814875945e12f4fa0bb49f1f93ca4be38d1fc 100644 (file)
@@ -5173,7 +5173,6 @@ static int __devinit ixgbe_sw_init(struct ixgbe_adapter *adapter)
        adapter->dcb_cfg.bw_percentage[DCB_RX_CONFIG][0] = 100;
        adapter->dcb_cfg.rx_pba_cfg = pba_equal;
        adapter->dcb_cfg.pfc_mode_enable = false;
-       adapter->dcb_cfg.round_robin_enable = false;
        adapter->dcb_set_bitmap = 0x00;
        ixgbe_copy_dcb_cfg(&adapter->dcb_cfg, &adapter->temp_dcb_cfg,
                           adapter->ring_feature[RING_F_DCB].indices);
This page took 0.04441 seconds and 5 git commands to generate.