All of lore.kernel.org
 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>,
	Harry van Haaren <harry.van.haaren@intel.com>,
	Dongdong Liu <liudongdong3@huawei.com>,
	Yisen Zhuang <yisen.zhuang@huawei.com>,
	Matan Azrad <matan@nvidia.com>,
	Viacheslav Ovsiienko <viacheslavo@nvidia.com>,
	Olivier Matz <olivier.matz@6wind.com>
Subject: [PATCH v2 06/20] remove repeated word 'in'
Date: Mon, 25 Jul 2022 20:34:49 -0700	[thread overview]
Message-ID: <20220726033503.65407-7-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>
---
 drivers/common/sfc_efx/base/efx_types.h | 2 +-
 drivers/event/sw/sw_evdev.c             | 2 +-
 drivers/net/hns3/hns3_ethdev.c          | 2 +-
 drivers/net/mlx5/mlx5_flow.c            | 2 +-
 drivers/net/sfc/sfc_ef10_tx.c           | 2 +-
 drivers/net/sfc/sfc_tso.c               | 2 +-
 lib/mbuf/rte_mbuf_core.h                | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/common/sfc_efx/base/efx_types.h b/drivers/common/sfc_efx/base/efx_types.h
index 12ae1084d83a..a6123962f976 100644
--- a/drivers/common/sfc_efx/base/efx_types.h
+++ b/drivers/common/sfc_efx/base/efx_types.h
@@ -399,7 +399,7 @@ extern int fix_lint;
  *
  *   (_element) << 4
  *
- * The result will contain the relevant bits filled in in the range
+ * The result will contain the relevant bits filled in the range
  * [0,high-low), with garbage in bits [high-low+1,...).
  */
 #define	EFX_EXTRACT_NATIVE(_element, _min, _max, _low, _high)		\
diff --git a/drivers/event/sw/sw_evdev.c b/drivers/event/sw/sw_evdev.c
index f93313b31b5c..7be9ac320963 100644
--- a/drivers/event/sw/sw_evdev.c
+++ b/drivers/event/sw/sw_evdev.c
@@ -244,7 +244,7 @@ qid_init(struct sw_evdev *sw, unsigned int idx, int type,
 	if (qid->type == RTE_SCHED_TYPE_ORDERED) {
 		uint32_t window_size;
 
-		/* rte_ring and window_size_mask require require window_size to
+		/* rte_ring and window_size_mask require window_size to
 		 * be a power-of-2.
 		 */
 		window_size = rte_align32pow2(
diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c
index 6b1d1a5fb191..29cff1946932 100644
--- a/drivers/net/hns3/hns3_ethdev.c
+++ b/drivers/net/hns3/hns3_ethdev.c
@@ -3904,7 +3904,7 @@ hns3_dev_promiscuous_enable(struct rte_eth_dev *dev)
 
 	/*
 	 * When promiscuous mode was enabled, disable the vlan filter to let
-	 * all packets coming in in the receiving direction.
+	 * all packets coming in the receiving direction.
 	 */
 	offloads = dev->data->dev_conf.rxmode.offloads;
 	if (offloads & RTE_ETH_RX_OFFLOAD_VLAN_FILTER) {
diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c
index 8c93a3f2e5ac..674dc31cadd0 100644
--- a/drivers/net/mlx5/mlx5_flow.c
+++ b/drivers/net/mlx5/mlx5_flow.c
@@ -4816,7 +4816,7 @@ flow_mreg_del_default_copy_action(struct rte_eth_dev *dev)
 }
 
 /**
- * Add the default copy action in in RX_CP_TBL.
+ * Add the default copy action in RX_CP_TBL.
  *
  * This functions is called in the mlx5_dev_start(). No thread safe
  * is guaranteed.
diff --git a/drivers/net/sfc/sfc_ef10_tx.c b/drivers/net/sfc/sfc_ef10_tx.c
index 5403a60707d1..116229382b68 100644
--- a/drivers/net/sfc/sfc_ef10_tx.c
+++ b/drivers/net/sfc/sfc_ef10_tx.c
@@ -503,7 +503,7 @@ sfc_ef10_xmit_tso_pkt(struct sfc_ef10_txq * const txq, struct rte_mbuf *m_seg,
 
 	/*
 	 * Tx prepare has debug-only checks that offload flags are correctly
-	 * filled in in TSO mbuf. Use zero IPID if there is no IPv4 flag.
+	 * filled in TSO mbuf. Use zero IPID if there is no IPv4 flag.
 	 * If the packet is still IPv4, HW will simply start from zero IPID.
 	 */
 	if (first_m_seg->ol_flags & RTE_MBUF_F_TX_IPV4)
diff --git a/drivers/net/sfc/sfc_tso.c b/drivers/net/sfc/sfc_tso.c
index 927e351a6ed4..a0827d1c0dd6 100644
--- a/drivers/net/sfc/sfc_tso.c
+++ b/drivers/net/sfc/sfc_tso.c
@@ -149,7 +149,7 @@ sfc_efx_tso_do(struct sfc_efx_txq *txq, unsigned int idx,
 
 	/*
 	 * Handle IP header. Tx prepare has debug-only checks that offload flags
-	 * are correctly filled in in TSO mbuf. Use zero IPID if there is no
+	 * are correctly filled in TSO mbuf. Use zero IPID if there is no
 	 * IPv4 flag. If the packet is still IPv4, HW will simply start from
 	 * zero IPID.
 	 */
diff --git a/lib/mbuf/rte_mbuf_core.h b/lib/mbuf/rte_mbuf_core.h
index 3d6ddd6773d2..b1c10cccc252 100644
--- a/lib/mbuf/rte_mbuf_core.h
+++ b/lib/mbuf/rte_mbuf_core.h
@@ -42,7 +42,7 @@ extern "C" {
 
 /**
  * The RX packet is a 802.1q VLAN packet, and the tci has been
- * saved in in mbuf->vlan_tci.
+ * saved in mbuf->vlan_tci.
  * If the flag RTE_MBUF_F_RX_VLAN_STRIPPED is also present, the VLAN
  * header has been stripped from mbuf data, else it is still
  * present.
-- 
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   ` [PATCH v2 02/20] remove repeated word 'to' Stephen Hemminger
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   ` Stephen Hemminger [this message]
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-7-stephen@networkplumber.org \
    --to=stephen@networkplumber.org \
    --cc=andrew.rybchenko@oktetlabs.ru \
    --cc=dev@dpdk.org \
    --cc=harry.van.haaren@intel.com \
    --cc=liudongdong3@huawei.com \
    --cc=matan@nvidia.com \
    --cc=olivier.matz@6wind.com \
    --cc=viacheslavo@nvidia.com \
    --cc=yisen.zhuang@huawei.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.