diff options
| author | Jakub Kicinski <[email protected]> | 2024-08-26 09:37:25 -0700 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2024-08-26 09:37:26 -0700 |
| commit | 77f0caecf4e63fd7fb0533ea85d7e792f95c2251 (patch) | |
| tree | 24254e33c32c080a3c96215de7eeb0e135db4d2d /net/core/dev.c | |
| parent | 0de45db8f4318f03e55214e3af3c5a7a2dc01120 (diff) | |
| parent | a8c924e98738f77668b022ec34107ca8b6093392 (diff) | |
Merge branch 'net-header-and-core-spelling-corrections'
Simon Horman says:
====================
net: header and core spelling corrections
This patchset addresses a number of spelling errors in comments in
Networking files under include/, and files in net/core/. Spelling
problems are as flagged by codespell.
It aims to provide patches that can be accepted directly into net-next.
And splits patches up based on maintainer boundaries: many things
feed directly into net-next. This is a complex process and I apologise
for any errors.
I also plan to address, via separate patches, spelling errors in other
files in the same directories, for files whose changes typically go
through trees other than net-next (which feed into net-next).
====================
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'net/core/dev.c')
| -rw-r--r-- | net/core/dev.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/core/dev.c b/net/core/dev.c index f34ec921f881..63987b8b7c85 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -3707,7 +3707,7 @@ struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *d next = skb->next; skb_mark_not_on_list(skb); - /* in case skb wont be segmented, point to itself */ + /* in case skb won't be segmented, point to itself */ skb->prev = skb; skb = validate_xmit_skb(skb, dev, again); @@ -11432,7 +11432,7 @@ void unregister_netdevice_many_notify(struct list_head *head, * @head: list of devices * * Note: As most callers use a stack allocated list_head, - * we force a list_del() to make sure stack wont be corrupted later. + * we force a list_del() to make sure stack won't be corrupted later. */ void unregister_netdevice_many(struct list_head *head) { @@ -11490,7 +11490,7 @@ int __dev_change_net_namespace(struct net_device *dev, struct net *net, if (dev->features & NETIF_F_NETNS_LOCAL) goto out; - /* Ensure the device has been registrered */ + /* Ensure the device has been registered */ if (dev->reg_state != NETREG_REGISTERED) goto out; |