Amir Vadai
2014-09-29 11:04:55 UTC
From: Ido Shamay <***@mellanox.com>
mlx4_en_netpoll, which is mlx4_en ndo_poll_controller callback,
might be called when port is down, causing a napi_schedule when
napi->poll callback in NULL. mutex_trylock is needed to acquire
the port_state lock, since other threads may grab it and stop
the port while we are in napi scheduling. Using trylock since in atomic
context.
Signed-off-by: Ido Shamay <***@mellanox.com>
Signed-off-by: Amir Vadai <***@mellanox.com>
---
Hi Dave,
Please push this commit to -stable
Thanks,
Amir
drivers/net/ethernet/mellanox/mlx4/en_netdev.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
index abddcf8..e243f1c 100644
--- a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
+++ b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
@@ -1272,13 +1272,23 @@ out:
static void mlx4_en_netpoll(struct net_device *dev)
{
struct mlx4_en_priv *priv = netdev_priv(dev);
+ struct mlx4_en_dev *mdev = priv->mdev;
struct mlx4_en_cq *cq;
int i;
+ if (!mutex_trylock(&mdev->state_lock))
+ return;
+
+ if (!priv->port_up)
+ goto out;
+
for (i = 0; i < priv->rx_ring_num; i++) {
cq = priv->rx_cq[i];
napi_schedule(&cq->napi);
}
+
+out:
+ mutex_unlock(&mdev->state_lock);
}
#endif
mlx4_en_netpoll, which is mlx4_en ndo_poll_controller callback,
might be called when port is down, causing a napi_schedule when
napi->poll callback in NULL. mutex_trylock is needed to acquire
the port_state lock, since other threads may grab it and stop
the port while we are in napi scheduling. Using trylock since in atomic
context.
Signed-off-by: Ido Shamay <***@mellanox.com>
Signed-off-by: Amir Vadai <***@mellanox.com>
---
Hi Dave,
Please push this commit to -stable
Thanks,
Amir
drivers/net/ethernet/mellanox/mlx4/en_netdev.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
index abddcf8..e243f1c 100644
--- a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
+++ b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
@@ -1272,13 +1272,23 @@ out:
static void mlx4_en_netpoll(struct net_device *dev)
{
struct mlx4_en_priv *priv = netdev_priv(dev);
+ struct mlx4_en_dev *mdev = priv->mdev;
struct mlx4_en_cq *cq;
int i;
+ if (!mutex_trylock(&mdev->state_lock))
+ return;
+
+ if (!priv->port_up)
+ goto out;
+
for (i = 0; i < priv->rx_ring_num; i++) {
cq = priv->rx_cq[i];
napi_schedule(&cq->napi);
}
+
+out:
+ mutex_unlock(&mdev->state_lock);
}
#endif
--
1.8.3.4
1.8.3.4