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.

Fix misspelling of "accept*" in net

Several files have "accept*" misspelled as "accpet*" in the comments.
Fix all such occurrences.

Signed-off-by: Alexander Zubkov <green@qrator.net>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20241008162756.22618-2-green@qrator.net
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Alexander Zubkov and committed by
Jakub Kicinski
80c549cd e4650d7a

+4 -4
+2 -2
drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_main.c
··· 342 342 { 343 343 struct sk_buff *skb; 344 344 345 - /* Allocate space for cpl_pass_accpet_req which will be synthesized by 346 - * driver. Once driver synthesizes cpl_pass_accpet_req the skb will go 345 + /* Allocate space for cpl_pass_accept_req which will be synthesized by 346 + * driver. Once driver synthesizes cpl_pass_accept_req the skb will go 347 347 * through the regular cpl_pass_accept_req processing in TOM. 348 348 */ 349 349 skb = alloc_skb(gl->tot_len + sizeof(struct cpl_pass_accept_req)
+1 -1
drivers/net/ethernet/natsemi/ns83820.c
··· 2090 2090 */ 2091 2091 /* Ramit : 1024 DMA is not a good idea, it ends up banging 2092 2092 * some DELL and COMPAQ SMP systems 2093 - * Turn on ALP, only we are accpeting Jumbo Packets */ 2093 + * Turn on ALP, only we are accepting Jumbo Packets */ 2094 2094 writel(RXCFG_AEP | RXCFG_ARP | RXCFG_AIRL | RXCFG_RX_FD 2095 2095 | RXCFG_STRIPCRC 2096 2096 //| RXCFG_ALP
+1 -1
include/uapi/linux/udp.h
··· 31 31 #define UDP_CORK 1 /* Never send partially complete segments */ 32 32 #define UDP_ENCAP 100 /* Set the socket to accept encapsulated packets */ 33 33 #define UDP_NO_CHECK6_TX 101 /* Disable sending checksum for UDP6X */ 34 - #define UDP_NO_CHECK6_RX 102 /* Disable accpeting checksum for UDP6 */ 34 + #define UDP_NO_CHECK6_RX 102 /* Disable accepting checksum for UDP6 */ 35 35 #define UDP_SEGMENT 103 /* Set GSO segmentation size */ 36 36 #define UDP_GRO 104 /* This socket can receive UDP GRO packets */ 37 37