Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Documentation: net: Fix typos in netdevices.rst

Fixes two minor typos. Specifically, on -> or and Devices -> Device.

Signed-off-by: Dimitri Daskalakis <dimitri.daskalakis1@gmail.com>
Link: https://patch.msgid.link/20260122225723.2368698-1-dimitri.daskalakis1@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Dimitri Daskalakis and committed by
Jakub Kicinski
3085ff59 eac026ff

+2 -2
+2 -2
Documentation/networking/netdevices.rst
··· 80 80 with it. The memory of struct net_device itself may still be referenced 81 81 by sysfs but all operations on that device will fail. 82 82 83 - free_netdev() can be called after unregister_netdev() returns on when 83 + free_netdev() can be called after unregister_netdev() returns or when 84 84 register_netdev() failed. 85 85 86 86 Device management under RTNL ··· 333 333 drivers to opt out of using ``rtnl_lock`` and instead perform their control 334 334 operations directly under the netdev instance lock. 335 335 336 - Devices drivers are encouraged to rely on the instance lock where possible. 336 + Device drivers are encouraged to rely on the instance lock where possible. 337 337 338 338 For the (mostly software) drivers that need to interact with the core stack, 339 339 there are two sets of interfaces: ``dev_xxx``/``netdev_xxx`` and ``netif_xxx``