DPDK patches and discussions
 help / color / mirror / Atom feed
From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>,
	Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>,
	Cristian Dumitrescu <cristian.dumitrescu@intel.com>,
	David Hunt <david.hunt@intel.com>
Subject: [PATCH v2 02/20] remove repeated word 'to'
Date: Mon, 25 Jul 2022 20:34:45 -0700	[thread overview]
Message-ID: <20220726033503.65407-3-stephen@networkplumber.org> (raw)
In-Reply-To: <20220726033503.65407-1-stephen@networkplumber.org>

Found by doing duplicate word scan.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 app/test/test_resource.c                  | 2 +-
 drivers/common/sfc_efx/base/siena_nvram.c | 2 +-
 lib/pipeline/rte_swx_ctl.c                | 2 +-
 lib/power/guest_channel.c                 | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app/test/test_resource.c b/app/test/test_resource.c
index 8f41e3babdc5..05c27db203cc 100644
--- a/app/test/test_resource.c
+++ b/app/test/test_resource.c
@@ -45,7 +45,7 @@ static int test_resource_c(void)
 			r->name);
 
 	TEST_ASSERT_SUCCESS(resource_fwrite_file(r, "test_resource.c"),
-			"Failed to to write file %s", r->name);
+			"Failed to write file %s", r->name);
 
 	f = fopen("test_resource.c", "r");
 	TEST_ASSERT_NOT_NULL(f,
diff --git a/drivers/common/sfc_efx/base/siena_nvram.c b/drivers/common/sfc_efx/base/siena_nvram.c
index 05ca4bd83dc9..ebcd3487b631 100644
--- a/drivers/common/sfc_efx/base/siena_nvram.c
+++ b/drivers/common/sfc_efx/base/siena_nvram.c
@@ -532,7 +532,7 @@ siena_nvram_partn_get_version(
 			: MC_CMD_NVRAM_TYPE_DYNAMIC_CFG_PORT1;
 		/*
 		 * Ingore missing partitions on port 2, assuming they're due
-		 * to to running on a single port part.
+		 * to running on a single port part.
 		 */
 		if ((1 << dcfg_partn) &  ~enp->en_u.siena.enu_partn_mask) {
 			if (entry->port == 2)
diff --git a/lib/pipeline/rte_swx_ctl.c b/lib/pipeline/rte_swx_ctl.c
index 710e89a46a26..9b7bf5e0fb01 100644
--- a/lib/pipeline/rte_swx_ctl.c
+++ b/lib/pipeline/rte_swx_ctl.c
@@ -1582,7 +1582,7 @@ rte_swx_ctl_pipeline_table_entry_delete(struct rte_swx_ctl_pipeline *ctl,
 	CHECK(!table_entry_check(ctl, table_id, entry, 1, 0), EINVAL);
 
 	/* The entry is found in the table->entries list:
-	 * - Move the existing entry from the table->entries list to to the
+	 * - Move the existing entry from the table->entries list to the
 	 *   table->pending_delete list.
 	 */
 	existing_entry = table_entries_find(table, entry);
diff --git a/lib/power/guest_channel.c b/lib/power/guest_channel.c
index 969a9e5aaa06..7b2ae0b6506f 100644
--- a/lib/power/guest_channel.c
+++ b/lib/power/guest_channel.c
@@ -74,7 +74,7 @@ guest_channel_host_connect(const char *path, unsigned int lcore_id)
 			fd_path, lcore_id);
 	fd = open(fd_path, O_RDWR);
 	if (fd < 0) {
-		RTE_LOG(ERR, GUEST_CHANNEL, "Unable to to connect to '%s' with error "
+		RTE_LOG(ERR, GUEST_CHANNEL, "Unable to connect to '%s' with error "
 				"%s\n", fd_path, strerror(errno));
 		return -1;
 	}
-- 
2.35.1


  parent reply	other threads:[~2022-07-26  3:35 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-22 21:40 [PATCH 00/11] Fix repeated words in comments and messages Stephen Hemminger
2022-07-22 21:40 ` [PATCH 01/11] remove duplicated 'to to' in messages and comments Stephen Hemminger
2022-07-22 21:40 ` [PATCH 02/11] remove duplicate words 'is is' Stephen Hemminger
2022-07-22 21:40 ` [PATCH 03/11] mvnet,mvpp2: remove duplicate word Stephen Hemminger
2022-07-23 18:23   ` [EXT] " Liron Himi
2022-07-22 21:40 ` [PATCH 04/11] Remove repeated word 'on on' Stephen Hemminger
2022-07-22 21:41 ` [PATCH 05/11] fix repeated words 'in in' Stephen Hemminger
2022-07-22 21:41 ` [PATCH 06/11] ring: fix repeated word in comment Stephen Hemminger
2022-07-22 21:41 ` [PATCH 07/11] i40e,igc: fix duplicate word than Stephen Hemminger
2022-07-22 21:41 ` [PATCH 08/11] bnx2x, pcap: replace only only Stephen Hemminger
2022-07-22 21:41 ` [PATCH 09/11] distrubutor: fix repeated word in comment Stephen Hemminger
2022-07-22 21:41 ` [PATCH 10/11] ethdev: " Stephen Hemminger
2022-07-25  6:25   ` Thomas Monjalon
2022-07-22 21:41 ` [PATCH 11/11] cxgbe: replace 'or or' " Stephen Hemminger
2022-07-25  8:40 ` [PATCH 00/11] Fix repeated words in comments and messages Bruce Richardson
2022-07-26  3:34 ` [PATCH v2 00/20] Remove " Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 01/20] ethdev: reword dev_info_get description Stephen Hemminger
2022-07-26  3:34   ` Stephen Hemminger [this message]
2022-07-26  3:34   ` [PATCH v2 03/20] remove repeated word 'is' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 04/20] remove repeated word 'same' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 05/20] remove repeated word 'on' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 06/20] remove repeated word 'in' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 07/20] remove repeated word 'this' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 08/20] remove repeated word 'then' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 09/20] remove repeated word 'only' Stephen Hemminger
2022-07-26 10:07     ` [EXT] " Rasesh Mody
2022-07-26  3:34   ` [PATCH v2 10/20] remove repeated word 'worker' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 11/20] remove repeated word 'or' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 12/20] remove repeated word 'table' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 13/20] remove repeated word 'that' Stephen Hemminger
2022-07-26  5:55     ` Niklas Soderlund
2022-07-26  3:34   ` [PATCH v2 14/20] remove repeated word 'override' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 15/20] remove repeated word 'groups' Stephen Hemminger
2022-07-26  3:34   ` [PATCH v2 16/20] remove repeated word 'page' Stephen Hemminger
2022-07-26  3:35   ` [PATCH v2 17/20] remove repeated word 'individual' Stephen Hemminger
2022-07-26  3:35   ` [PATCH v2 18/20] remove repeated word 'expected' Stephen Hemminger
2022-07-26  3:35   ` [PATCH v2 19/20] remove repeated word 'be' Stephen Hemminger
2022-07-26  9:10     ` [EXT] " Devendra Singh Rawat
2022-07-26 10:09     ` Rasesh Mody
2022-07-26  3:35   ` [PATCH v2 20/20] remove repeated word 'all' Stephen Hemminger
2022-07-26 16:30 ` [PATCH v3 00/20] Remove repeated words in comments and messages Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 01/20] ethdev: reword dev_info_get description Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 02/20] remove repeated word 'to' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 03/20] remove repeated word 'is' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 04/20] remove repeated word 'same' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 05/20] remove repeated word 'on' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 06/20] remove repeated word 'in' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 07/20] remove repeated word 'this' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 08/20] remove repeated word 'then' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 09/20] remove repeated word 'only' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 10/20] remove repeated word 'worker' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 11/20] remove repeated word 'or' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 12/20] remove repeated word 'table' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 13/20] remove repeated word 'that' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 14/20] remove repeated word 'override' Stephen Hemminger
2022-07-26 16:42     ` Hemant Agrawal
2022-07-26 16:30   ` [PATCH v3 15/20] remove repeated word 'groups' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 16/20] remove repeated word 'page' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 17/20] remove repeated word 'individual' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 18/20] remove repeated word 'expected' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 19/20] remove repeated word 'be' Stephen Hemminger
2022-07-26 16:30   ` [PATCH v3 20/20] remove repeated word 'all' Stephen Hemminger

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=20220726033503.65407-3-stephen@networkplumber.org \
    --to=stephen@networkplumber.org \
    --cc=andrew.rybchenko@oktetlabs.ru \
    --cc=cristian.dumitrescu@intel.com \
    --cc=david.hunt@intel.com \
    --cc=dev@dpdk.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).