Skip to content

Commit 80c549c

Browse files
user318kuba-moo
authored andcommitted
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>
1 parent e4650d7 commit 80c549c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,8 @@ static struct sk_buff *copy_gl_to_skb_pkt(const struct pkt_gl *gl,
342342
{
343343
struct sk_buff *skb;
344344

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
347347
* through the regular cpl_pass_accept_req processing in TOM.
348348
*/
349349
skb = alloc_skb(gl->tot_len + sizeof(struct cpl_pass_accept_req)

drivers/net/ethernet/natsemi/ns83820.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2090,7 +2090,7 @@ static int ns83820_init_one(struct pci_dev *pci_dev,
20902090
*/
20912091
/* Ramit : 1024 DMA is not a good idea, it ends up banging
20922092
* 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 */
20942094
writel(RXCFG_AEP | RXCFG_ARP | RXCFG_AIRL | RXCFG_RX_FD
20952095
| RXCFG_STRIPCRC
20962096
//| RXCFG_ALP

include/uapi/linux/udp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ struct udphdr {
3131
#define UDP_CORK 1 /* Never send partially complete segments */
3232
#define UDP_ENCAP 100 /* Set the socket to accept encapsulated packets */
3333
#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 */
3535
#define UDP_SEGMENT 103 /* Set GSO segmentation size */
3636
#define UDP_GRO 104 /* This socket can receive UDP GRO packets */
3737

0 commit comments

Comments
 (0)