diff options
author | Roland Dreier <rolandd@cisco.com> | 2010-03-01 23:51:56 -0800 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2010-03-01 23:51:56 -0800 |
commit | 7f1681622a7b70b083f0034afb837c06f8ba2612 (patch) | |
tree | fa26475cf2b19e8ce653b1ea1c5fb95527a14be1 /drivers/infiniband | |
parent | 85f938a70cad96c6dc631ad4c40e342814193a96 (diff) | |
parent | 757bebb3f989f10acc6f105e89305b0d19aa7c55 (diff) | |
download | linux-3.10-7f1681622a7b70b083f0034afb837c06f8ba2612.tar.gz linux-3.10-7f1681622a7b70b083f0034afb837c06f8ba2612.tar.bz2 linux-3.10-7f1681622a7b70b083f0034afb837c06f8ba2612.zip |
Merge branch 'ipoib' into for-next
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib_ethtool.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_ethtool.c b/drivers/infiniband/ulp/ipoib/ipoib_ethtool.c index e9795f60e5d..d10b4ec68d2 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_ethtool.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_ethtool.c @@ -55,9 +55,7 @@ static int ipoib_get_coalesce(struct net_device *dev, struct ipoib_dev_priv *priv = netdev_priv(dev); coal->rx_coalesce_usecs = priv->ethtool.coalesce_usecs; - coal->tx_coalesce_usecs = priv->ethtool.coalesce_usecs; coal->rx_max_coalesced_frames = priv->ethtool.max_coalesced_frames; - coal->tx_max_coalesced_frames = priv->ethtool.max_coalesced_frames; return 0; } @@ -69,10 +67,8 @@ static int ipoib_set_coalesce(struct net_device *dev, int ret; /* - * Since IPoIB uses a single CQ for both rx and tx, we assume - * that rx params dictate the configuration. These values are - * saved in the private data and returned when ipoib_get_coalesce() - * is called. + * These values are saved in the private data and returned + * when ipoib_get_coalesce() is called */ if (coal->rx_coalesce_usecs > 0xffff || coal->rx_max_coalesced_frames > 0xffff) @@ -85,8 +81,6 @@ static int ipoib_set_coalesce(struct net_device *dev, return ret; } - coal->tx_coalesce_usecs = coal->rx_coalesce_usecs; - coal->tx_max_coalesced_frames = coal->rx_max_coalesced_frames; priv->ethtool.coalesce_usecs = coal->rx_coalesce_usecs; priv->ethtool.max_coalesced_frames = coal->rx_max_coalesced_frames; |