From: Soham Metha <sohammetha01@gmail.com>
To: linux-kselftest@vger.kernel.org
Cc: shuah@kernel.org, skhan@linuxfoundation.org,
linux-kernel-mentees@lists.linuxfoundation.org,
linux-kernel@vger.kernel.org,
Soham Metha <sohammetha01@gmail.com>,
Pablo Neira Ayuso <pablo@netfilter.org>,
Jozsef Kadlecsik <kadlec@netfilter.org>,
Florian Westphal <fw@strlen.de>,
"David S. Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Simon Horman <horms@kernel.org>,
netfilter-devel@vger.kernel.org, coreteam@netfilter.org,
netdev@vger.kernel.org
Subject: [PATCH 2/6] setftests: net: netfilter: fix spelling mistakes in output
Date: Fri, 15 Aug 2025 05:47:59 +0530 [thread overview]
Message-ID: <20250815001803.112924-1-sohammetha01@gmail.com> (raw)
In-Reply-To: <20250815000859.112169-1-sohammetha01@gmail.com>
found/fixed following typos
- add add -> add
- cannnot -> cannot
- fowarded -> forwarded
in `tools/testing/selftests/net/netfilter/nft_nat.sh`
Signed-off-by: Soham Metha <sohammetha01@gmail.com>
---
.../testing/selftests/net/netfilter/nft_nat.sh | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/tools/testing/selftests/net/netfilter/nft_nat.sh b/tools/testing/selftests/net/netfilter/nft_nat.sh
index a954754b99b3..44a8fdf5c19c 100755
--- a/tools/testing/selftests/net/netfilter/nft_nat.sh
+++ b/tools/testing/selftests/net/netfilter/nft_nat.sh
@@ -164,7 +164,7 @@ table $family nat {
}
EOF
if [ $? -ne 0 ]; then
- echo "SKIP: Could not add add $family dnat hook"
+ echo "SKIP: Could not add $family dnat hook"
return $ksft_skip
fi
@@ -239,7 +239,7 @@ EOF
test_inet_nat=false
return $ksft_skip
fi
- echo "SKIP: Could not add add $family dnat hook"
+ echo "SKIP: Could not add $family dnat hook"
return $ksft_skip
fi
@@ -418,7 +418,7 @@ table $family nat {
}
EOF
if [ $? -ne 0 ]; then
- echo "SKIP: Could not add add $family masquerade hook"
+ echo "SKIP: Could not add $family masquerade hook"
return $ksft_skip
fi
@@ -509,7 +509,7 @@ table $family nat {
}
EOF
if [ $? -ne 0 ]; then
- echo "SKIP: Could not add add $family masquerade hook"
+ echo "SKIP: Could not add $family masquerade hook"
return $ksft_skip
fi
@@ -569,7 +569,7 @@ test_redirect6()
ip netns exec "$ns0" sysctl net.ipv6.conf.all.forwarding=1 > /dev/null
if ! ip netns exec "$ns2" ping -q -c 1 dead:1::99 > /dev/null;then
- echo "ERROR: cannnot ping $ns1 from $ns2 via ipv6"
+ echo "ERROR: cannot ping $ns1 from $ns2 via ipv6"
lret=1
fi
@@ -598,7 +598,7 @@ table $family nat {
}
EOF
if [ $? -ne 0 ]; then
- echo "SKIP: Could not add add $family redirect hook"
+ echo "SKIP: Could not add $family redirect hook"
return $ksft_skip
fi
@@ -673,7 +673,7 @@ table $family nat {
}
EOF
if [ $? -ne 0 ]; then
- echo "SKIP: Could not add add $family redirect hook"
+ echo "SKIP: Could not add $family redirect hook"
return $ksft_skip
fi
@@ -844,7 +844,7 @@ table $family nat {
}
EOF
if [ $? -ne 0 ]; then
- echo "SKIP: Could not add add $family masquerade hook"
+ echo "SKIP: Could not add $family masquerade hook"
return $ksft_skip
fi
@@ -859,7 +859,7 @@ EOF
# from router:service bypass connection tracking.
test_port_shadow_notrack "$family"
- # test nat based mitigation: fowarded packets coming from service port
+ # test nat based mitigation: forwarded packets coming from service port
# are masqueraded with random highport.
test_port_shadow_pat "$family"
--
2.34.1
next prev parent reply other threads:[~2025-08-15 0:18 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-15 0:08 [PATCH 0/6] Kselftests: fix spelling mistakes Soham Metha
2025-08-15 0:08 ` [PATCH 1/6] selftests: filesystems: statmout: fix spelling mistake in output Soham Metha
2025-08-15 0:17 ` Soham Metha [this message]
2025-08-15 0:18 ` [PATCH 3/6] selftests: ublk: fixed " Soham Metha
2025-08-15 6:08 ` Ming Lei
2025-08-15 0:18 ` [PATCH 4/6] selftests: kvm: riscv: fix spelling mistakes in comments Soham Metha
2025-08-15 0:18 ` [PATCH 5/6] selftests: kvm: s390: fixed spelling mistake in output Soham Metha
2025-08-18 9:56 ` David Hildenbrand
2025-08-15 0:18 ` [PATCH 6/6] selftests: net: tcp_ao: fix spelling mistake in comments Soham Metha
2025-08-15 6:14 ` [PATCH 2/6] setftests: net: netfilter: fix spelling mistakes in output Florian Westphal
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250815001803.112924-1-sohammetha01@gmail.com \
--to=sohammetha01@gmail.com \
--cc=coreteam@netfilter.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=fw@strlen.de \
--cc=horms@kernel.org \
--cc=kadlec@netfilter.org \
--cc=kuba@kernel.org \
--cc=linux-kernel-mentees@lists.linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=pablo@netfilter.org \
--cc=shuah@kernel.org \
--cc=skhan@linuxfoundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).