aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/pensando/ionic/ionic_lif.c
diff options
context:
space:
mode:
authorShannon Nelson <snelson@pensando.io>2021-04-07 16:19:59 -0700
committerDavid S. Miller <davem@davemloft.net>2021-04-08 13:18:49 -0700
commit99b5bea04f0f0dc9e6278536a269e1f4795b73e1 (patch)
treee4bc92988c6fd078e6afbcf968945ba3d792b529 /drivers/net/ethernet/pensando/ionic/ionic_lif.c
parentionic: re-start ptp after queues up (diff)
downloadlinux-dev-99b5bea04f0f0dc9e6278536a269e1f4795b73e1.tar.xz
linux-dev-99b5bea04f0f0dc9e6278536a269e1f4795b73e1.zip
ionic: ignore EBUSY on queue start
When starting the queues in the link-check, don't go into the BROKEN state if the return was EBUSY. Signed-off-by: Shannon Nelson <snelson@pensando.io> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/pensando/ionic/ionic_lif.c')
-rw-r--r--drivers/net/ethernet/pensando/ionic/ionic_lif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/pensando/ionic/ionic_lif.c b/drivers/net/ethernet/pensando/ionic/ionic_lif.c
index 8cf6477b9899..eae774c0a2d9 100644
--- a/drivers/net/ethernet/pensando/ionic/ionic_lif.c
+++ b/drivers/net/ethernet/pensando/ionic/ionic_lif.c
@@ -135,7 +135,7 @@ static void ionic_link_status_check(struct ionic_lif *lif)
if (netdev->flags & IFF_UP && netif_running(netdev)) {
mutex_lock(&lif->queue_lock);
err = ionic_start_queues(lif);
- if (err) {
+ if (err && err != -EBUSY) {
netdev_err(lif->netdev,
"Failed to start queues: %d\n", err);
set_bit(IONIC_LIF_F_BROKEN, lif->state);