2019-07-18 02:21:30

by Su, Yanjun

[permalink] [raw]
Subject: [PATCH] udp: Fix typo in net/ipv4/udp.c

Signed-off-by: Su Yanjun <[email protected]>
---
net/ipv4/udp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
index c21862b..d88821c 100644
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -2170,7 +2170,7 @@ static int __udp4_lib_mcast_deliver(struct net *net, struct sk_buff *skb,

/* Initialize UDP checksum. If exited with zero value (success),
* CHECKSUM_UNNECESSARY means, that no more checks are required.
- * Otherwise, csum completion requires chacksumming packet body,
+ * Otherwise, csum completion requires checksumming packet body,
* including udp header and folding it to skb->csum.
*/
static inline int udp4_csum_init(struct sk_buff *skb, struct udphdr *uh,
--
2.7.4




2019-07-18 18:53:12

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] udp: Fix typo in net/ipv4/udp.c

From: Su Yanjun <[email protected]>
Date: Thu, 18 Jul 2019 10:19:23 +0800

> Signed-off-by: Su Yanjun <[email protected]>

Several problems with this patch submission:

1) Please always make it clear when you post a new version of a patch
using indications in the Subject line such as "[PATCH v2]" or
similar.

Otherwise I assume it is a different change altogether and not
related to any other patch.

2) The targetted subsystem or tree must be clearly identified in the
subject line, for this you should say "[PATCH net v2]" since you
are targetting my networking bug fix GIT tree.

Thank you.