diff mbox series

[iproute] replace use of term 'Sanity check'

Message ID 20240912171446.12854-1-stephen@networkplumber.org (mailing list archive)
State Accepted
Commit 058e82cb2f4896903358f03e4b895670906a91df
Delegated to: Stephen Hemminger
Headers show
Series [iproute] replace use of term 'Sanity check' | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

Stephen Hemminger Sept. 12, 2024, 5:14 p.m. UTC
The term "sanity check" is on the Tier2 word list (should replace).
See https://inclusivenaming.org/word-lists/tier-2/sanity-check/

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 misc/arpd.c | 3 +--
 tipc/node.c | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

Comments

patchwork-bot+netdevbpf@kernel.org Sept. 13, 2024, 3:40 p.m. UTC | #1
Hello:

This patch was applied to iproute2/iproute2.git (main)
by Stephen Hemminger <stephen@networkplumber.org>:

On Thu, 12 Sep 2024 10:14:20 -0700 you wrote:
> The term "sanity check" is on the Tier2 word list (should replace).
> See https://inclusivenaming.org/word-lists/tier-2/sanity-check/
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
>  misc/arpd.c | 3 +--
>  tipc/node.c | 2 +-
>  2 files changed, 2 insertions(+), 3 deletions(-)

Here is the summary with links:
  - [iproute] replace use of term 'Sanity check'
    https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=058e82cb2f48

You are awesome, thank you!
diff mbox series

Patch

diff --git a/misc/arpd.c b/misc/arpd.c
index 3185620f..e77ef539 100644
--- a/misc/arpd.c
+++ b/misc/arpd.c
@@ -494,8 +494,7 @@  static void get_arp_pkt(void)
 	if (ifnum && !handle_if(sll.sll_ifindex))
 		return;
 
-	/* Sanity checks */
-
+	/* Validate packet */
 	if (n < sizeof(*a) ||
 	    (a->ar_op != htons(ARPOP_REQUEST) &&
 	     a->ar_op != htons(ARPOP_REPLY)) ||
diff --git a/tipc/node.c b/tipc/node.c
index e645d374..b84a3fa1 100644
--- a/tipc/node.c
+++ b/tipc/node.c
@@ -252,7 +252,7 @@  get_ops:
 	/* Get master key indication */
 	opt_master = get_opt(opts, "master");
 
-	/* Sanity check if wrong option */
+	/* Validate node key */
 	if (opt_nodeid && opt_master) {
 		fprintf(stderr, "error, per-node key cannot be master\n");
 		return -EINVAL;