[ofa-general] [PATCH 14/16] ib/ipoib: Support modifying IPOIB CQ moderation params

Eli Cohen eli at mellanox.co.il
Wed Jan 16 08:38:28 PST 2008


Support modifying IPOIB CQ moderation params

This can be used to tune at run time the paramters controlling
the event (interrupt) generation rate and thus reduce the overhead
incurred by handling interrupts resulting in better throughput.

Signed-off-by: Eli Cohen <eli at mellanox.co.il>
---
 drivers/infiniband/ulp/ipoib/ipoib.h       |    6 ++++
 drivers/infiniband/ulp/ipoib/ipoib_etool.c |   42 ++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/drivers/infiniband/ulp/ipoib/ipoib.h b/drivers/infiniband/ulp/ipoib/ipoib.h
index 6783936..b22b0c7 100644
--- a/drivers/infiniband/ulp/ipoib/ipoib.h
+++ b/drivers/infiniband/ulp/ipoib/ipoib.h
@@ -303,6 +303,11 @@ struct ipoib_cm_dev_priv {
 	struct ib_recv_wr       rx_wr;
 };
 
+struct ipoib_ethtool_st {
+	u16     coalesce_usecs;
+	u16     max_coalesced_frames;
+};
+
 /*
  * Device private locking: tx_lock protects members used in TX fast
  * path (and we use LLTX so upper layers don't do extra locking).
@@ -380,6 +385,7 @@ struct ipoib_dev_priv {
 	struct dentry *mcg_dentry;
 	struct dentry *path_dentry;
 #endif
+	struct ipoib_ethtool_st etool;
 };
 
 struct ipoib_ah {
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_etool.c b/drivers/infiniband/ulp/ipoib/ipoib_etool.c
index 913aea0..513140c 100644
--- a/drivers/infiniband/ulp/ipoib/ipoib_etool.c
+++ b/drivers/infiniband/ulp/ipoib/ipoib_etool.c
@@ -44,9 +44,51 @@ static void ipoib_get_drvinfo(struct net_device *netdev,
 	strncpy(drvinfo->driver, "ipoib", sizeof(drvinfo->driver) - 1);
 }
 
+static int ipoib_get_coalesce(struct net_device *dev,
+			      struct ethtool_coalesce *coal)
+{
+	struct ipoib_dev_priv *priv = netdev_priv(dev);
+
+	coal->rx_coalesce_usecs = priv->etool.coalesce_usecs;
+	coal->tx_coalesce_usecs = priv->etool.coalesce_usecs;
+	coal->rx_max_coalesced_frames = priv->etool.max_coalesced_frames;
+	coal->tx_max_coalesced_frames = priv->etool.max_coalesced_frames;
+
+	return 0;
+}
+
+static int ipoib_set_coalesce(struct net_device *dev,
+                             struct ethtool_coalesce *coal)
+{
+	struct ipoib_dev_priv *priv = netdev_priv(dev);
+	int ret;
+
+	if (coal->rx_coalesce_usecs > 0xffff            ||
+	    coal->tx_coalesce_usecs > 0xffff            ||
+	    coal->rx_max_coalesced_frames > 0xffff      ||
+	    coal->tx_max_coalesced_frames > 0xffff)
+		return -EINVAL;
+
+	ret = ib_modify_cq(priv->cq, coal->rx_max_coalesced_frames,
+	coal->rx_coalesce_usecs);
+	if (ret) {
+		ipoib_dbg(priv, "failed modifying CQ\n");
+		return ret;
+	}
+
+	coal->tx_coalesce_usecs = coal->rx_coalesce_usecs;
+	priv->etool.coalesce_usecs = coal->rx_coalesce_usecs;
+	coal->rx_max_coalesced_frames = coal->rx_max_coalesced_frames;
+	priv->etool.max_coalesced_frames = coal->rx_max_coalesced_frames;
+
+	return 0;
+}
+
 static const struct ethtool_ops ipoib_ethtool_ops = {
 	.get_drvinfo            = ipoib_get_drvinfo,
 	.get_tso		= ethtool_op_get_tso,
+	.get_coalesce           = ipoib_get_coalesce,
+	.set_coalesce           = ipoib_set_coalesce,
 };
 
 void ipoib_set_ethtool_ops(struct net_device *dev)
-- 
1.5.3.8





More information about the general mailing list