Commit f1d12bc7 authored by Jakub Kicinski's avatar Jakub Kicinski
Browse files

eth: niu: fix calling napi_enable() in atomic context



napi_enable() may sleep now, take netdev_lock() before np->lock.

Fixes: 413f0271 ("net: protect NAPI enablement with netdev_lock()")
Reported-by: default avatarDan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/dcfd56bc-de32-4b11-9e19-d8bd1543745d@stanley.mountain


Reviewed-by: default avatarEric Dumazet <edumazet@google.com>
Link: https://patch.msgid.link/20250124031841.1179756-6-kuba@kernel.org


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent d19e612c
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -6086,7 +6086,7 @@ static void niu_enable_napi(struct niu *np)
	int i;

	for (i = 0; i < np->num_ldg; i++)
		napi_enable(&np->ldg[i].napi);
		napi_enable_locked(&np->ldg[i].napi);
}

static void niu_disable_napi(struct niu *np)
@@ -6116,7 +6116,9 @@ static int niu_open(struct net_device *dev)
	if (err)
		goto out_free_channels;

	netdev_lock(dev);
	niu_enable_napi(np);
	netdev_unlock(dev);

	spin_lock_irq(&np->lock);

@@ -6521,6 +6523,7 @@ static void niu_reset_task(struct work_struct *work)

	niu_reset_buffers(np);

	netdev_lock(np->dev);
	spin_lock_irqsave(&np->lock, flags);

	err = niu_init_hw(np);
@@ -6531,6 +6534,7 @@ static void niu_reset_task(struct work_struct *work)
	}

	spin_unlock_irqrestore(&np->lock, flags);
	netdev_unlock(np->dev);
}

static void niu_tx_timeout(struct net_device *dev, unsigned int txqueue)
@@ -6761,7 +6765,9 @@ static int niu_change_mtu(struct net_device *dev, int new_mtu)

	niu_free_channels(np);

	netdev_lock(dev);
	niu_enable_napi(np);
	netdev_unlock(dev);

	err = niu_alloc_channels(np);
	if (err)
@@ -9937,6 +9943,7 @@ static int __maybe_unused niu_resume(struct device *dev_d)

	spin_lock_irqsave(&np->lock, flags);

	netdev_lock(dev);
	err = niu_init_hw(np);
	if (!err) {
		np->timer.expires = jiffies + HZ;
@@ -9945,6 +9952,7 @@ static int __maybe_unused niu_resume(struct device *dev_d)
	}

	spin_unlock_irqrestore(&np->lock, flags);
	netdev_unlock(dev);

	return err;
}