DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] Spelling : Fix spelling mistake.
@ 2024-03-21 22:35 Fidel Castro
  2024-03-25  1:57 ` Thomas Monjalon
  0 siblings, 1 reply; 6+ messages in thread
From: Fidel Castro @ 2024-03-21 22:35 UTC (permalink / raw)
  To: dev; +Cc: Fidel Castro

Caught by codespell.

Signed-off-by: Fidel Castro <fidelcastro.s@hotmail.com>
---
 app/test/test_power.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test/test_power.c b/app/test/test_power.c
index f1e80299d3..403adc22d6 100644
--- a/app/test/test_power.c
+++ b/app/test/test_power.c
@@ -143,7 +143,7 @@ test_power(void)
 		/* Test setting a valid environment */
 		ret = rte_power_set_env(envs[i]);
 		if (ret != 0) {
-			printf("Unexpectedly unsucceeded on setting a valid environment\n");
+			printf("Unexpectedly unsuccessful on setting a valid environment\n");
 			return -1;
 		}
 
-- 
2.44.0.windows.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Spelling : Fix spelling mistake.
  2024-03-21 22:35 [PATCH] Spelling : Fix spelling mistake Fidel Castro
@ 2024-03-25  1:57 ` Thomas Monjalon
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2024-03-25  1:57 UTC (permalink / raw)
  To: Fidel Castro; +Cc: dev

21/03/2024 23:35, Fidel Castro:
> Caught by codespell.
> 
> Signed-off-by: Fidel Castro <fidelcastro.s@hotmail.com>

added root cause
Fixes: 2653bee888b4 ("test/power: check all environment types")
Cc: stable@dpdk.org

and added your name in .mailmap

Applied, thanks.



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Spelling: Fix Spelling mistake.
  2024-03-21 23:05 [PATCH] Spelling: Fix Spelling mistake vinh.t.tran10
@ 2024-03-25  2:33 ` Thomas Monjalon
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2024-03-25  2:33 UTC (permalink / raw)
  To: vinh.t.tran10; +Cc: dev

22/03/2024 00:05, vinh.t.tran10@gmail.com:
> From: vtran0314 <vinh.t.tran10@gmail.com>
> 
> Caught by codespell.
> 
> Signed-off-by: Vinh Tran <vinh.t.tran10@gmail.com>
[..]
> -	TEST_ASSERT_NULL(cfgfile, "Expected failured did not occur");
> +	TEST_ASSERT_NULL(cfgfile, "Expected failed did not occur");

Correct wording should be "Expected failure".
And there are 3 more occurrences in this file.

I've completed the fix, added root cause
Fixes: c54e7234bc9e ("test/cfgfile: add basic unit tests")
Cc: stable@dpdk.org

and added your name in .mailmap

Signed-off-by: Vinh Tran <vinh.t.tran10@gmail.com>
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Spelling: Fix spelling mistake.
  2024-03-21 22:41 [PATCH] Spelling: " masoumeh.farhadinia
@ 2024-03-25  1:50 ` Thomas Monjalon
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2024-03-25  1:50 UTC (permalink / raw)
  To: Masi; +Cc: dev

21/03/2024 23:41, masoumeh.farhadinia@gmail.com:
> From: Masi <masoumeh.farhadinia@gmail.com>
> 
> Caught by codespell.
> 
> Signed-off-by: Masi <masoumeh.farhadinia@gmail.com>

added root cause
Fixes: 7622291b641d ("examples/ipsec-secgw: allow to specify neighbour MAC address")
Cc: stable@dpdk.org

and added your name in .mailmap

Applied, thanks.



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] Spelling: Fix Spelling mistake.
@ 2024-03-21 23:05 vinh.t.tran10
  2024-03-25  2:33 ` Thomas Monjalon
  0 siblings, 1 reply; 6+ messages in thread
From: vinh.t.tran10 @ 2024-03-21 23:05 UTC (permalink / raw)
  To: dev

From: vtran0314 <vinh.t.tran10@gmail.com>

Caught by codespell.

Signed-off-by: Vinh Tran <vinh.t.tran10@gmail.com>
---
 app/test/test_cfgfile.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test/test_cfgfile.c b/app/test/test_cfgfile.c
index 2f596affee..adc6732cd1 100644
--- a/app/test/test_cfgfile.c
+++ b/app/test/test_cfgfile.c
@@ -168,7 +168,7 @@ test_cfgfile_invalid_section_header(void)
 	struct rte_cfgfile *cfgfile;
 
 	cfgfile = rte_cfgfile_load(CFG_FILES_ETC "/invalid_section.ini", 0);
-	TEST_ASSERT_NULL(cfgfile, "Expected failured did not occur");
+	TEST_ASSERT_NULL(cfgfile, "Expected failed did not occur");
 
 	return 0;
 }
-- 
2.44.0.windows.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] Spelling: Fix spelling mistake.
@ 2024-03-21 22:41 masoumeh.farhadinia
  2024-03-25  1:50 ` Thomas Monjalon
  0 siblings, 1 reply; 6+ messages in thread
From: masoumeh.farhadinia @ 2024-03-21 22:41 UTC (permalink / raw)
  To: dev; +Cc: Masi

From: Masi <masoumeh.farhadinia@gmail.com>

Caught by codespell.

Signed-off-by: Masi <masoumeh.farhadinia@gmail.com>
---
 examples/ipsec-secgw/parser.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/ipsec-secgw/parser.c b/examples/ipsec-secgw/parser.c
index 98f8176651..2bd6df335b 100644
--- a/examples/ipsec-secgw/parser.c
+++ b/examples/ipsec-secgw/parser.c
@@ -388,7 +388,7 @@ cfg_parse_neigh(void *parsed_result, __rte_unused struct cmdline *cl,
 	rc = parse_mac(res->mac, &mac);
 	APP_CHECK(rc == 0, st, "invalid ether addr:%s", res->mac);
 	rc = add_dst_ethaddr(res->port, &mac);
-	APP_CHECK(rc == 0, st, "invalid port numer:%hu", res->port);
+	APP_CHECK(rc == 0, st, "invalid port number:%hu", res->port);
 	if (st->status < 0)
 		return;
 }
-- 
2.44.0.windows.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-03-25  2:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-21 22:35 [PATCH] Spelling : Fix spelling mistake Fidel Castro
2024-03-25  1:57 ` Thomas Monjalon
2024-03-21 22:41 [PATCH] Spelling: " masoumeh.farhadinia
2024-03-25  1:50 ` Thomas Monjalon
2024-03-21 23:05 [PATCH] Spelling: Fix Spelling mistake vinh.t.tran10
2024-03-25  2:33 ` Thomas Monjalon

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).