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

net: skbuff: fix kernel-doc typos

Correct punctuation and drop an extraneous word.

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://lore.kernel.org/r/20231008214121.25940-1-rdunlap@infradead.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Randy Dunlap and committed by
Jakub Kicinski
8527ca77 da6192ca

+2 -2
+2 -2
include/linux/skbuff.h
··· 1309 1309 * 1310 1310 * Returns true if skb is a fast clone, and its clone is not freed. 1311 1311 * Some drivers call skb_orphan() in their ndo_start_xmit(), 1312 - * so we also check that this didnt happen. 1312 + * so we also check that didn't happen. 1313 1313 */ 1314 1314 static inline bool skb_fclone_busy(const struct sock *sk, 1315 1315 const struct sk_buff *skb) ··· 2016 2016 * Copy shared buffers into a new sk_buff. We effectively do COW on 2017 2017 * packets to handle cases where we have a local reader and forward 2018 2018 * and a couple of other messy ones. The normal one is tcpdumping 2019 - * a packet thats being forwarded. 2019 + * a packet that's being forwarded. 2020 2020 */ 2021 2021 2022 2022 /**