net/mlx4_en: Add mlx4_en_get_cqe helper
authorIdo Shamay <idos@mellanox.com>
Thu, 18 Sep 2014 08:51:01 +0000 (11:51 +0300)
committerDavid S. Miller <davem@davemloft.net>
Fri, 19 Sep 2014 21:30:11 +0000 (17:30 -0400)
This function derives the base address of the CQE from the CQE size,
and calculates the real CQE context segment in it from the factor
(this is like before). Before this change the code used the factor to
calculate the base address of the CQE as well.

The factor indicates in which segment of the cqe stride the cqe information
is located. For 32-byte strides, the segment is 0, and for 64 byte strides,
the segment is 1 (bytes 32..63). Using the factor was ok as long as we had
only 32 and 64 byte strides. However, with larger strides, the factor is zero,
and so cannot be used to calculate the base of the CQE.

The helper uses the same method of CQE buffer pulling made by all other
components that reads the CQE buffer (mlx4_ib driver and libmlx4).

Signed-off-by: Ido Shamay <idos@mellanox.com>
Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx4/en_netdev.c
drivers/net/ethernet/mellanox/mlx4/en_rx.c
drivers/net/ethernet/mellanox/mlx4/en_tx.c
drivers/net/ethernet/mellanox/mlx4/mlx4_en.h

index abddcf8c40aa120c4d4ade2822ccef68d00ea434..f3032fec8fce03767580bd555a4760e8d7faba1e 100644 (file)
@@ -2459,6 +2459,7 @@ int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
        }
        priv->rx_ring_num = prof->rx_ring_num;
        priv->cqe_factor = (mdev->dev->caps.cqe_size == 64) ? 1 : 0;
+       priv->cqe_size = mdev->dev->caps.cqe_size;
        priv->mac_index = -1;
        priv->msg_enable = MLX4_EN_MSG_LEVEL;
        spin_lock_init(&priv->stats_lock);
index 14686b6f4bc591d1fd4d6e2f0c6dd9e71d0288b5..a33048ee9621a360060fed128d6f048faf53ea42 100644 (file)
@@ -671,7 +671,7 @@ int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int bud
         * descriptor offset can be deduced from the CQE index instead of
         * reading 'cqe->index' */
        index = cq->mcq.cons_index & ring->size_mask;
-       cqe = &cq->buf[(index << factor) + factor];
+       cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
 
        /* Process all completed CQEs */
        while (XNOR(cqe->owner_sr_opcode & MLX4_CQE_OWNER_MASK,
@@ -858,7 +858,7 @@ next:
 
                ++cq->mcq.cons_index;
                index = (cq->mcq.cons_index) & ring->size_mask;
-               cqe = &cq->buf[(index << factor) + factor];
+               cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
                if (++polled == budget)
                        goto out;
        }
index bc8f51c77d8082c1ab420a25394f32f1a59de20e..c44f4237b9be7fc48b77aee31918dcdfd3537ae8 100644 (file)
@@ -382,7 +382,7 @@ static bool mlx4_en_process_tx_cq(struct net_device *dev,
                return true;
 
        index = cons_index & size_mask;
-       cqe = &buf[(index << factor) + factor];
+       cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor;
        ring_index = ring->cons & size_mask;
        stamp_index = ring_index;
 
@@ -430,7 +430,7 @@ static bool mlx4_en_process_tx_cq(struct net_device *dev,
 
                ++cons_index;
                index = cons_index & size_mask;
-               cqe = &buf[(index << factor) + factor];
+               cqe = mlx4_en_get_cqe(buf, index, priv->cqe_size) + factor;
        }
 
 
index 3de41be49425ce23c19477db2e0c19fca4f395ac..e3d71c386da71a34efaf334bbb02d3a3276427fe 100644 (file)
@@ -542,6 +542,7 @@ struct mlx4_en_priv {
        unsigned max_mtu;
        int base_qpn;
        int cqe_factor;
+       int cqe_size;
 
        struct mlx4_en_rss_map rss_map;
        __be32 ctrl_flags;
@@ -612,6 +613,11 @@ struct mlx4_mac_entry {
        struct rcu_head rcu;
 };
 
+static inline struct mlx4_cqe *mlx4_en_get_cqe(void *buf, int idx, int cqe_sz)
+{
+       return buf + idx * cqe_sz;
+}
+
 #ifdef CONFIG_NET_RX_BUSY_POLL
 static inline void mlx4_en_cq_init_lock(struct mlx4_en_cq *cq)
 {