Commit 8527ca77 authored by Randy Dunlap's avatar Randy Dunlap Committed by Jakub Kicinski

net: skbuff: fix kernel-doc typos

Correct punctuation and drop an extraneous word.
Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Reviewed-by: default avatarSimon Horman <horms@kernel.org>
Link: https://lore.kernel.org/r/20231008214121.25940-1-rdunlap@infradead.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent da6192ca
...@@ -1309,7 +1309,7 @@ struct sk_buff_fclones { ...@@ -1309,7 +1309,7 @@ struct sk_buff_fclones {
* *
* Returns true if skb is a fast clone, and its clone is not freed. * Returns true if skb is a fast clone, and its clone is not freed.
* Some drivers call skb_orphan() in their ndo_start_xmit(), * Some drivers call skb_orphan() in their ndo_start_xmit(),
* so we also check that this didnt happen. * so we also check that didn't happen.
*/ */
static inline bool skb_fclone_busy(const struct sock *sk, static inline bool skb_fclone_busy(const struct sock *sk,
const struct sk_buff *skb) const struct sk_buff *skb)
...@@ -2016,7 +2016,7 @@ static inline struct sk_buff *skb_share_check(struct sk_buff *skb, gfp_t pri) ...@@ -2016,7 +2016,7 @@ static inline struct sk_buff *skb_share_check(struct sk_buff *skb, gfp_t pri)
* Copy shared buffers into a new sk_buff. We effectively do COW on * Copy shared buffers into a new sk_buff. We effectively do COW on
* packets to handle cases where we have a local reader and forward * packets to handle cases where we have a local reader and forward
* and a couple of other messy ones. The normal one is tcpdumping * and a couple of other messy ones. The normal one is tcpdumping
* a packet thats being forwarded. * a packet that's being forwarded.
*/ */
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment