]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
mlx4_en: Added Ethtool support for TX Interrupt coalescing
authorYevgeny Petrilin <yevgenyp@mellanox.co.il>
Mon, 23 Apr 2012 02:18:33 +0000 (02:18 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Apr 2012 02:34:02 +0000 (22:34 -0400)
Signed-off-by: Yevgeny Petrilin <yevgenyp@mellanox.co.il>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx4/en_ethtool.c
drivers/net/ethernet/mellanox/mlx4/en_netdev.c

index e15a1fb4cd1432d16e37cd9c9aaa2c79248eb0ea..72901ce2b088cc764a2b5005592108e660565214 100644 (file)
@@ -359,8 +359,8 @@ static int mlx4_en_get_coalesce(struct net_device *dev,
 {
        struct mlx4_en_priv *priv = netdev_priv(dev);
 
-       coal->tx_coalesce_usecs = 0;
-       coal->tx_max_coalesced_frames = 0;
+       coal->tx_coalesce_usecs = priv->tx_usecs;
+       coal->tx_max_coalesced_frames = priv->tx_frames;
        coal->rx_coalesce_usecs = priv->rx_usecs;
        coal->rx_max_coalesced_frames = priv->rx_frames;
 
@@ -388,6 +388,21 @@ static int mlx4_en_set_coalesce(struct net_device *dev,
                                MLX4_EN_RX_COAL_TIME :
                                coal->rx_coalesce_usecs;
 
+       /* Setting TX coalescing parameters */
+       if (coal->tx_coalesce_usecs != priv->tx_usecs ||
+           coal->tx_max_coalesced_frames != priv->tx_frames) {
+               priv->tx_usecs = coal->tx_coalesce_usecs;
+               priv->tx_frames = coal->tx_max_coalesced_frames;
+               for (i = 0; i < priv->tx_ring_num; i++) {
+                       priv->tx_cq[i].moder_cnt = priv->tx_frames;
+                       priv->tx_cq[i].moder_time = priv->tx_usecs;
+                       if (mlx4_en_set_cq_moder(priv, &priv->tx_cq[i])) {
+                               en_warn(priv, "Failed changing moderation "
+                                             "for TX cq %d\n", i);
+                       }
+               }
+       }
+
        /* Set adaptive coalescing params */
        priv->pkt_rate_low = coal->pkt_rate_low;
        priv->rx_usecs_low = coal->rx_coalesce_usecs_low;
index 35003ada04ec53fbe44c9821f2a2ad707c313f02..bfcfd8ae5f73ce6da9377feef9702c905b9fdba9 100644 (file)
@@ -429,6 +429,8 @@ static void mlx4_en_set_default_moderation(struct mlx4_en_priv *priv)
         */
        priv->rx_frames = MLX4_EN_RX_COAL_TARGET;
        priv->rx_usecs = MLX4_EN_RX_COAL_TIME;
+       priv->tx_frames = MLX4_EN_TX_COAL_PKTS;
+       priv->tx_usecs = MLX4_EN_TX_COAL_TIME;
        en_dbg(INTR, priv, "Default coalesing params for mtu:%d - "
                           "rx_frames:%d rx_usecs:%d\n",
                 priv->dev->mtu, priv->rx_frames, priv->rx_usecs);
@@ -445,8 +447,8 @@ static void mlx4_en_set_default_moderation(struct mlx4_en_priv *priv)
 
        for (i = 0; i < priv->tx_ring_num; i++) {
                cq = &priv->tx_cq[i];
-               cq->moder_cnt = MLX4_EN_TX_COAL_PKTS;
-               cq->moder_time = MLX4_EN_TX_COAL_TIME;
+               cq->moder_cnt = priv->tx_frames;
+               cq->moder_time = priv->tx_usecs;
        }
 
        /* Reset auto-moderation params */