net: s/dev_set_threaded/netif_set_threaded/

Commit cc34acd577 ("docs: net: document new locking reality")
introduced netif_ vs dev_ function semantics: the former expects locked
netdev, the latter takes care of the locking. We don't strictly
follow this semantics on either side, but there are more dev_xxx handlers
now that don't fit. Rename them to netif_xxx where appropriate.

Note that one dev_set_threaded call still remains in mt76 for debugfs file.

Signed-off-by: Stanislav Fomichev <sdf@fomichev.me>
Link: https://patch.msgid.link/20250717172333.1288349-7-sdf@fomichev.me
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Stanislav Fomichev
2025-07-17 10:23:32 -07:00
committed by Jakub Kicinski
parent 93893a57ef
commit 5d4d84618e
10 changed files with 23 additions and 10 deletions

View File

@@ -367,3 +367,15 @@ void netdev_state_change(struct net_device *dev)
netdev_unlock_ops(dev);
}
EXPORT_SYMBOL(netdev_state_change);
int dev_set_threaded(struct net_device *dev, bool threaded)
{
int ret;
netdev_lock(dev);
ret = netif_set_threaded(dev, threaded);
netdev_unlock(dev);
return ret;
}
EXPORT_SYMBOL(dev_set_threaded);