DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] test/rwlock: fix spelling and missing whitespace
@ 2021-01-14 16:48 Stephen Hemminger
  2021-01-17 17:33 ` Thomas Monjalon
  0 siblings, 1 reply; 2+ messages in thread
From: Stephen Hemminger @ 2021-01-14 16:48 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger

Trivial fix to for spelling errors and incorrect spacing.
No change to any built code.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 app/test/test_rwlock.c | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/app/test/test_rwlock.c b/app/test/test_rwlock.c
index 701187f39884..c4876018ce35 100644
--- a/app/test/test_rwlock.c
+++ b/app/test/test_rwlock.c
@@ -46,6 +46,7 @@ enum {
 static struct {
 	rte_rwlock_t lock;
 	uint64_t tick;
+
 	volatile union {
 		uint8_t u8[RTE_CACHE_LINE_SIZE];
 		uint64_t u64[RTE_CACHE_LINE_SIZE / sizeof(uint64_t)];
@@ -182,7 +183,7 @@ rwlock_test1(void)
 	int i;
 
 	rte_rwlock_init(&sl);
-	for (i=0; i<RTE_MAX_LCORE; i++)
+	for (i = 0; i < RTE_MAX_LCORE; i++)
 		rte_rwlock_init(&sl_tab[i]);
 
 	rte_rwlock_write_lock(&sl);
@@ -252,7 +253,7 @@ try_write(uint32_t lc)
 	if (rc != 0)
 		return rc;
 
-	/* update by bytes in reverese order */
+	/* update by bytes in reverse order */
 	for (i = RTE_DIM(try_rwlock_data.data.u8); i-- != 0; ) {
 
 		/* race condition occurred, lock doesn't work properly */
@@ -269,7 +270,7 @@ try_write(uint32_t lc)
 		try_rwlock_data.data.u8[i] = v;
 	}
 
-	/* restore by bytes in reverese order */
+	/* restore by bytes in reveres order */
 	for (i = RTE_DIM(try_rwlock_data.data.u8); i-- != 0; ) {
 
 		/* race condition occurred, lock doesn't work properly */
@@ -461,7 +462,7 @@ try_rwlock_test_rda(void)
 {
 	try_test_reset();
 
-	/* start read test on all avaialble lcores */
+	/* start read test on all available lcores */
 	rte_eal_mp_remote_launch(try_read_lcore, NULL, CALL_MAIN);
 	rte_eal_mp_wait_lcore();
 
-- 
2.29.2


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

* Re: [dpdk-dev] [PATCH] test/rwlock: fix spelling and missing whitespace
  2021-01-14 16:48 [dpdk-dev] [PATCH] test/rwlock: fix spelling and missing whitespace Stephen Hemminger
@ 2021-01-17 17:33 ` Thomas Monjalon
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Monjalon @ 2021-01-17 17:33 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev

14/01/2021 17:48, Stephen Hemminger:
> Trivial fix to for spelling errors and incorrect spacing.
> No change to any built code.
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
> -	/* restore by bytes in reverese order */
> +	/* restore by bytes in reveres order */

This comment may require one more fix :)

Applied with above fixed, thanks




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

end of thread, other threads:[~2021-01-17 17:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-14 16:48 [dpdk-dev] [PATCH] test/rwlock: fix spelling and missing whitespace Stephen Hemminger
2021-01-17 17: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).