]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mlx4: mlx4_en_low_latency_recv() called with BH disabled
authorEric Dumazet <edumazet@google.com>
Wed, 18 Nov 2015 14:30:51 +0000 (06:30 -0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 18 Nov 2015 21:17:38 +0000 (16:17 -0500)
mlx4_en_low_latency_recv() is called with BH disabled,
as other ndo_busy_poll() methods.

No need for spin_lock_bh()/spin_unlock_bh()

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx4/mlx4_en.h

index c41f15102ae0b7cbfd1351431ada14a223f1624e..965c8f016ac440c8e35c3a04f7174718a5b04030 100644 (file)
@@ -660,11 +660,12 @@ static inline bool mlx4_en_cq_unlock_napi(struct mlx4_en_cq *cq)
        return rc;
 }
 
-/* called from mlx4_en_low_latency_poll() */
+/* called from mlx4_en_low_latency_recv(), BH are disabled */
 static inline bool mlx4_en_cq_lock_poll(struct mlx4_en_cq *cq)
 {
        int rc = true;
-       spin_lock_bh(&cq->poll_lock);
+
+       spin_lock(&cq->poll_lock);
        if ((cq->state & MLX4_CQ_LOCKED)) {
                struct net_device *dev = cq->dev;
                struct mlx4_en_priv *priv = netdev_priv(dev);
@@ -676,7 +677,7 @@ static inline bool mlx4_en_cq_lock_poll(struct mlx4_en_cq *cq)
        } else
                /* preserve yield marks */
                cq->state |= MLX4_EN_CQ_STATE_POLL;
-       spin_unlock_bh(&cq->poll_lock);
+       spin_unlock(&cq->poll_lock);
        return rc;
 }
 
@@ -684,13 +685,14 @@ static inline bool mlx4_en_cq_lock_poll(struct mlx4_en_cq *cq)
 static inline bool mlx4_en_cq_unlock_poll(struct mlx4_en_cq *cq)
 {
        int rc = false;
-       spin_lock_bh(&cq->poll_lock);
+
+       spin_lock(&cq->poll_lock);
        WARN_ON(cq->state & (MLX4_EN_CQ_STATE_NAPI));
 
        if (cq->state & MLX4_EN_CQ_STATE_POLL_YIELD)
                rc = true;
        cq->state = MLX4_EN_CQ_STATE_IDLE;
-       spin_unlock_bh(&cq->poll_lock);
+       spin_unlock(&cq->poll_lock);
        return rc;
 }