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

Documentation: networking: correct possessive "its"

Change occurrences of "it's" that are possessive to "its"
so that they don't read as "it is".

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Paolo Abeni <pabeni@redhat.com>
Cc: Jiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/20220829235414.17110-1-rdunlap@infradead.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Randy Dunlap and committed by
Jakub Kicinski
404a5ad7 8fc29ff3

+5 -5
+1 -1
Documentation/networking/devlink/netdevsim.rst
··· 67 67 - setting tx_share and tx_max rate values for any rate object type; 68 68 - setting parent node for any rate object type. 69 69 70 - Rate nodes and it's parameters are exposed in ``netdevsim`` debugfs in RO mode. 70 + Rate nodes and their parameters are exposed in ``netdevsim`` debugfs in RO mode. 71 71 For example created rate node with name ``some_group``: 72 72 73 73 .. code:: shell
+1 -1
Documentation/networking/driver.rst
··· 8 8 9 9 1) The ndo_start_xmit method must not return NETDEV_TX_BUSY under 10 10 any normal circumstances. It is considered a hard error unless 11 - there is no way your device can tell ahead of time when it's 11 + there is no way your device can tell ahead of time when its 12 12 transmit function will become busy. 13 13 14 14 Instead it must maintain the queue properly. For example,
+1 -1
Documentation/networking/ipvlan.rst
··· 11 11 ================ 12 12 This is conceptually very similar to the macvlan driver with one major 13 13 exception of using L3 for mux-ing /demux-ing among slaves. This property makes 14 - the master device share the L2 with it's slave devices. I have developed this 14 + the master device share the L2 with its slave devices. I have developed this 15 15 driver in conjunction with network namespaces and not sure if there is use case 16 16 outside of it. 17 17
+1 -1
Documentation/networking/l2tp.rst
··· 530 530 handler initiates the same tunnel close actions. All sessions are 531 531 first closed. Each session drops its tunnel ref. When the tunnel ref 532 532 reaches zero, the tunnel puts its socket ref. When the socket is 533 - eventually destroyed, it's sk_destruct finally frees the L2TP tunnel 533 + eventually destroyed, its sk_destruct finally frees the L2TP tunnel 534 534 context. 535 535 536 536 Sessions
+1 -1
Documentation/networking/switchdev.rst
··· 159 159 160 160 The switchdev driver can know a particular port's position in the topology by 161 161 monitoring NETDEV_CHANGEUPPER notifications. For example, a port moved into a 162 - bond will see it's upper master change. If that bond is moved into a bridge, 162 + bond will see its upper master change. If that bond is moved into a bridge, 163 163 the bond's upper master will change. And so on. The driver will track such 164 164 movements to know what position a port is in in the overall topology by 165 165 registering for netdevice events and acting on NETDEV_CHANGEUPPER.