2022-07-13 16:13:40

by iamwjia

[permalink] [raw]
Subject: [PATCH -next] xfrm: Fix couple of spellings

From: Wang Jia <[email protected]>

accomodate ==> accommodate
destionation ==> destination
execeeds ==> exceeds
informations ==> information

Reported-by: Hacash Robot <[email protected]>
Signed-off-by: Wang Jia <[email protected]>
---
net/ipv6/ah6.c | 2 +-
net/ipv6/esp6.c | 4 ++--
net/ipv6/ip6_vti.c | 2 +-
net/ipv6/udp.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net/ipv6/ah6.c b/net/ipv6/ah6.c
index b5995c1f4d7a..04cf1db57c75 100644
--- a/net/ipv6/ah6.c
+++ b/net/ipv6/ah6.c
@@ -144,7 +144,7 @@ static bool zero_out_mutable_opts(struct ipv6_opt_hdr *opthdr)
/**
* ipv6_rearrange_destopt - rearrange IPv6 destination options header
* @iph: IPv6 header
- * @destopt: destionation options header
+ * @destopt: destination options header
*/
static void ipv6_rearrange_destopt(struct ipv6hdr *iph, struct ipv6_opt_hdr *destopt)
{
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c
index 36e1d0f8dd06..8220923a12f7 100644
--- a/net/ipv6/esp6.c
+++ b/net/ipv6/esp6.c
@@ -343,7 +343,7 @@ static struct ip_esp_hdr *esp_output_set_esn(struct sk_buff *skb,
struct esp_output_extra *extra)
{
/* For ESN we move the header forward by 4 bytes to
- * accomodate the high bits. We will move it back after
+ * accommodate the high bits. We will move it back after
* encryption.
*/
if ((x->props.flags & XFRM_STATE_ESN)) {
@@ -896,7 +896,7 @@ static void esp_input_set_header(struct sk_buff *skb, __be32 *seqhi)
struct xfrm_state *x = xfrm_input_state(skb);

/* For ESN we move the header forward by 4 bytes to
- * accomodate the high bits. We will move it back after
+ * accommodate the high bits. We will move it back after
* decryption.
*/
if ((x->props.flags & XFRM_STATE_ESN)) {
diff --git a/net/ipv6/ip6_vti.c b/net/ipv6/ip6_vti.c
index 3a434d75925c..5500f9aec8fb 100644
--- a/net/ipv6/ip6_vti.c
+++ b/net/ipv6/ip6_vti.c
@@ -440,7 +440,7 @@ static bool vti6_state_check(const struct xfrm_state *x,
* vti6_xmit - send a packet
* @skb: the outgoing socket buffer
* @dev: the outgoing tunnel device
- * @fl: the flow informations for the xfrm_lookup
+ * @fl: the flow information for the xfrm_lookup
**/
static int
vti6_xmit(struct sk_buff *skb, struct net_device *dev, struct flowi *fl)
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
index 55afd7f39c04..758e348877cb 100644
--- a/net/ipv6/udp.c
+++ b/net/ipv6/udp.c
@@ -308,7 +308,7 @@ struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be
EXPORT_SYMBOL_GPL(udp6_lib_lookup);
#endif

-/* do not use the scratch area len for jumbogram: their length execeeds the
+/* do not use the scratch area len for jumbogram: their length exceeds the
* scratch area space; note that the IP6CB flags is still in the first
* cacheline, so checking for jumbograms is cheap
*/
--
2.25.1


2022-07-15 07:50:09

by Steffen Klassert

[permalink] [raw]
Subject: Re: [PATCH -next] xfrm: Fix couple of spellings

On Wed, Jul 13, 2022 at 11:45:29PM +0800, [email protected] wrote:
> From: Wang Jia <[email protected]>
>
> accomodate ==> accommodate
> destionation ==> destination
> execeeds ==> exceeds
> informations ==> information
>
> Reported-by: Hacash Robot <[email protected]>
> Signed-off-by: Wang Jia <[email protected]>
> ---
> net/ipv6/ah6.c | 2 +-
> net/ipv6/esp6.c | 4 ++--

Your patch does not apply to ipsec-next, the fixes
for net/ipv6/esp6.c are already done there.

Please rebase your patch to ipsec-next, thanks!