From: Stephen Hemminger <stephen@networkplumber.org>
To: dev@dpdk.org
Cc: Stephen Hemminger <stephen@networkplumber.org>,
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>,
Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>,
Olivier Matz <olivier.matz@6wind.com>
Subject: [PATCH v4 06/19] remove repeated word 'in'
Date: Wed, 22 Feb 2023 08:25:26 -0800 [thread overview]
Message-ID: <20230222162539.127103-7-stephen@networkplumber.org> (raw)
In-Reply-To: <20230222162539.127103-1-stephen@networkplumber.org>
Found by doing duplicate word scan.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
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 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/event/sw/sw_evdev.c b/drivers/event/sw/sw_evdev.c
index 3531821dd43a..cfd659d7748e 100644
--- a/drivers/event/sw/sw_evdev.c
+++ b/drivers/event/sw/sw_evdev.c
@@ -245,7 +245,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 6babf67fcec2..36896f898955 100644
--- a/drivers/net/hns3/hns3_ethdev.c
+++ b/drivers/net/hns3/hns3_ethdev.c
@@ -3845,7 +3845,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 a6a426caf781..f55f24ad692a 100644
--- a/drivers/net/mlx5/mlx5_flow.c
+++ b/drivers/net/mlx5/mlx5_flow.c
@@ -5039,7 +5039,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 a30e1e0eaf87..93d66c63e626 100644
--- a/lib/mbuf/rte_mbuf_core.h
+++ b/lib/mbuf/rte_mbuf_core.h
@@ -41,7 +41,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.39.1
next prev parent reply other threads:[~2023-02-22 16:26 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <0220722214106.162640-1-stephen@networkplumber.org>
2023-02-22 16:25 ` [PATCH v4 00/19] Remove repeated words in comments and messages Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 01/19] ethdev: reword dev_info_get description Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 02/19] remove repeated word 'to' Stephen Hemminger
2023-02-22 16:28 ` Dumitrescu, Cristian
2023-02-22 16:32 ` Hunt, David
2023-02-22 16:25 ` [PATCH v4 03/19] remove repeated word 'is' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 04/19] remove repeated word 'same' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 05/19] remove repeated word 'on' Stephen Hemminger
2023-02-22 16:31 ` Hunt, David
2023-02-22 16:25 ` Stephen Hemminger [this message]
2023-02-22 16:44 ` [PATCH v4 06/19] remove repeated word 'in' Van Haaren, Harry
2023-02-22 16:25 ` [PATCH v4 07/19] remove repeated word 'this' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 08/19] remove repeated word 'only' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 09/19] remove repeated word 'worker' Stephen Hemminger
2023-02-22 16:30 ` Hunt, David
2023-02-22 16:25 ` [PATCH v4 10/19] remove repeated word 'or' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 11/19] remove repeated word 'table' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 12/19] remove repeated word 'that' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 13/19] remove repeated word 'override' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 14/19] remove repeated word 'groups' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 15/19] remove repeated word 'page' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 16/19] remove repeated word 'individual' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 17/19] remove repeated word 'expected' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 18/19] remove repeated word 'be' Stephen Hemminger
2023-02-22 16:25 ` [PATCH v4 19/19] remove repeated word 'all' Stephen Hemminger
2023-03-12 9:41 ` [PATCH v4 00/19] Remove repeated words in comments and messages Thomas Monjalon
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=20230222162539.127103-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 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).