* [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo
@ 2018-11-13 19:12 Ali Alnubani
2018-11-13 19:12 ` [dpdk-dev] [PATCH 2/2] net/mlx5: " Ali Alnubani
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Ali Alnubani @ 2018-11-13 19:12 UTC (permalink / raw)
To: dev; +Cc: Thomas Monjalon, Shahaf Shuler, stable
Fixes: 9797bfcce1c9 ("net/mlx4: add new memory region support")
Cc: stable@dpdk.org
Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
---
drivers/net/mlx4/mlx4_mr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/mlx4/mlx4_mr.c b/drivers/net/mlx4/mlx4_mr.c
index bee858643..c2066ea4b 100644
--- a/drivers/net/mlx4/mlx4_mr.c
+++ b/drivers/net/mlx4/mlx4_mr.c
@@ -571,7 +571,7 @@ mlx4_mr_create(struct rte_eth_dev *dev, struct mlx4_mr_cache *entry,
* Find out a contiguous virtual address chunk in use, to which the
* given address belongs, in order to register maximum range. In the
* best case where mempools are not dynamically recreated and
- * '--socket-mem' is speicified as an EAL option, it is very likely to
+ * '--socket-mem' is specified as an EAL option, it is very likely to
* have only one MR(LKey) per a socket and per a hugepage-size even
* though the system memory is highly fragmented.
*/
--
2.11.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [dpdk-dev] [PATCH 2/2] net/mlx5: fix typo
2018-11-13 19:12 [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo Ali Alnubani
@ 2018-11-13 19:12 ` Ali Alnubani
2018-11-14 7:48 ` [dpdk-dev] [PATCH 1/2] net/mlx4: " Ali Alnubani
2018-11-14 13:20 ` Shahaf Shuler
2 siblings, 0 replies; 7+ messages in thread
From: Ali Alnubani @ 2018-11-13 19:12 UTC (permalink / raw)
To: dev; +Cc: Thomas Monjalon, Shahaf Shuler, stable
Fixes: e1114ff6a5ab ("net/mlx5: support e-switch flow count action")
Cc: stable@dpdk.org
Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
---
drivers/net/mlx5/mlx5_flow_tcf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/mlx5/mlx5_flow_tcf.c b/drivers/net/mlx5/mlx5_flow_tcf.c
index 97d2a54c5..790663e99 100644
--- a/drivers/net/mlx5/mlx5_flow_tcf.c
+++ b/drivers/net/mlx5/mlx5_flow_tcf.c
@@ -5494,7 +5494,7 @@ flow_tcf_nl_filter_parse_and_get(struct nlmsghdr *cnlh,
* Message received from Netlink.
* @param[out] data
* Pointer to data area to be filled by the parsing routine.
- * assumed to be a pinter to struct flow_tcf_stats_basic.
+ * assumed to be a pointer to struct flow_tcf_stats_basic.
*
* @return
* MNL_CB_OK value.
--
2.11.0
^ permalink raw reply [flat|nested] 7+ messages in thread
* [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo
2018-11-13 19:12 [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo Ali Alnubani
2018-11-13 19:12 ` [dpdk-dev] [PATCH 2/2] net/mlx5: " Ali Alnubani
@ 2018-11-14 7:48 ` Ali Alnubani
2018-11-14 7:48 ` [dpdk-dev] [PATCH v2 2/2] net/mlx5: fix typos Ali Alnubani
2018-11-14 15:03 ` [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo Shahaf Shuler
2018-11-14 13:20 ` Shahaf Shuler
2 siblings, 2 replies; 7+ messages in thread
From: Ali Alnubani @ 2018-11-14 7:48 UTC (permalink / raw)
To: dev; +Cc: Thomas Monjalon, Shahaf Shuler, stable
Fixes: 9797bfcce1c9 ("net/mlx4: add new memory region support")
Cc: stable@dpdk.org
Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
---
drivers/net/mlx4/mlx4_mr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/mlx4/mlx4_mr.c b/drivers/net/mlx4/mlx4_mr.c
index bee858643..c2066ea4b 100644
--- a/drivers/net/mlx4/mlx4_mr.c
+++ b/drivers/net/mlx4/mlx4_mr.c
@@ -571,7 +571,7 @@ mlx4_mr_create(struct rte_eth_dev *dev, struct mlx4_mr_cache *entry,
* Find out a contiguous virtual address chunk in use, to which the
* given address belongs, in order to register maximum range. In the
* best case where mempools are not dynamically recreated and
- * '--socket-mem' is speicified as an EAL option, it is very likely to
+ * '--socket-mem' is specified as an EAL option, it is very likely to
* have only one MR(LKey) per a socket and per a hugepage-size even
* though the system memory is highly fragmented.
*/
--
2.19.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [dpdk-dev] [PATCH v2 2/2] net/mlx5: fix typos
2018-11-14 7:48 ` [dpdk-dev] [PATCH 1/2] net/mlx4: " Ali Alnubani
@ 2018-11-14 7:48 ` Ali Alnubani
2018-11-14 15:04 ` Shahaf Shuler
2018-11-14 15:03 ` [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo Shahaf Shuler
1 sibling, 1 reply; 7+ messages in thread
From: Ali Alnubani @ 2018-11-14 7:48 UTC (permalink / raw)
To: dev; +Cc: Thomas Monjalon, Shahaf Shuler, stable
Fixes: e1114ff6a5ab ("net/mlx5: support e-switch flow count action")
Fixes: 974f1e7ef146 ("net/mlx5: add new memory region support")
Cc: stable@dpdk.org
Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
---
Changes in v2:
- Fixed one more typo.
drivers/net/mlx5/mlx5_flow_tcf.c | 2 +-
drivers/net/mlx5/mlx5_mr.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/mlx5/mlx5_flow_tcf.c b/drivers/net/mlx5/mlx5_flow_tcf.c
index 97d2a54c5..790663e99 100644
--- a/drivers/net/mlx5/mlx5_flow_tcf.c
+++ b/drivers/net/mlx5/mlx5_flow_tcf.c
@@ -5494,7 +5494,7 @@ flow_tcf_nl_filter_parse_and_get(struct nlmsghdr *cnlh,
* Message received from Netlink.
* @param[out] data
* Pointer to data area to be filled by the parsing routine.
- * assumed to be a pinter to struct flow_tcf_stats_basic.
+ * assumed to be a pointer to struct flow_tcf_stats_basic.
*
* @return
* MNL_CB_OK value.
diff --git a/drivers/net/mlx5/mlx5_mr.c b/drivers/net/mlx5/mlx5_mr.c
index f4b15d3f6..f8b7dcaa0 100644
--- a/drivers/net/mlx5/mlx5_mr.c
+++ b/drivers/net/mlx5/mlx5_mr.c
@@ -570,7 +570,7 @@ mlx5_mr_create(struct rte_eth_dev *dev, struct mlx5_mr_cache *entry,
* Find out a contiguous virtual address chunk in use, to which the
* given address belongs, in order to register maximum range. In the
* best case where mempools are not dynamically recreated and
- * '--socket-mem' is speicified as an EAL option, it is very likely to
+ * '--socket-mem' is specified as an EAL option, it is very likely to
* have only one MR(LKey) per a socket and per a hugepage-size even
* though the system memory is highly fragmented.
*/
--
2.19.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH v2 2/2] net/mlx5: fix typos
2018-11-14 7:48 ` [dpdk-dev] [PATCH v2 2/2] net/mlx5: fix typos Ali Alnubani
@ 2018-11-14 15:04 ` Shahaf Shuler
0 siblings, 0 replies; 7+ messages in thread
From: Shahaf Shuler @ 2018-11-14 15:04 UTC (permalink / raw)
To: Ali Alnubani, dev; +Cc: Thomas Monjalon, stable
Wednesday, November 14, 2018 9:49 AM, Ali Alnubani:
> Subject: [PATCH v2 2/2] net/mlx5: fix typos
>
> Fixes: e1114ff6a5ab ("net/mlx5: support e-switch flow count action")
> Fixes: 974f1e7ef146 ("net/mlx5: add new memory region support")
> Cc: stable@dpdk.org
>
> Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
Applied to next-net-mlx, thanks.
(next time resend the whole series in the v2).
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo
2018-11-14 7:48 ` [dpdk-dev] [PATCH 1/2] net/mlx4: " Ali Alnubani
2018-11-14 7:48 ` [dpdk-dev] [PATCH v2 2/2] net/mlx5: fix typos Ali Alnubani
@ 2018-11-14 15:03 ` Shahaf Shuler
1 sibling, 0 replies; 7+ messages in thread
From: Shahaf Shuler @ 2018-11-14 15:03 UTC (permalink / raw)
To: Ali Alnubani, dev; +Cc: Thomas Monjalon, stable
Wednesday, November 14, 2018 9:48 AM, Ali Alnubani:
> Subject: [PATCH 1/2] net/mlx4: fix typo
>
> Fixes: 9797bfcce1c9 ("net/mlx4: add new memory region support")
> Cc: stable@dpdk.org
>
> Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
> ---
>From some reason my previous mail is not shown on patchwork. Resending
Applied to next-net-mlx, thanks.
> 2.19.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo
2018-11-13 19:12 [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo Ali Alnubani
2018-11-13 19:12 ` [dpdk-dev] [PATCH 2/2] net/mlx5: " Ali Alnubani
2018-11-14 7:48 ` [dpdk-dev] [PATCH 1/2] net/mlx4: " Ali Alnubani
@ 2018-11-14 13:20 ` Shahaf Shuler
2 siblings, 0 replies; 7+ messages in thread
From: Shahaf Shuler @ 2018-11-14 13:20 UTC (permalink / raw)
To: Ali Alnubani, dev; +Cc: Thomas Monjalon, stable
Tuesday, November 13, 2018 9:13 PM, Ali Alnubani:
> Subject: [PATCH 1/2] net/mlx4: fix typo
>
> Fixes: 9797bfcce1c9 ("net/mlx4: add new memory region support")
> Cc: stable@dpdk.org
>
> Signed-off-by: Ali Alnubani <alialnu@mellanox.com>
Series applied to next-net-mlx with minor commit title edit. Please have a look, thanks.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-11-14 15:04 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-13 19:12 [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo Ali Alnubani
2018-11-13 19:12 ` [dpdk-dev] [PATCH 2/2] net/mlx5: " Ali Alnubani
2018-11-14 7:48 ` [dpdk-dev] [PATCH 1/2] net/mlx4: " Ali Alnubani
2018-11-14 7:48 ` [dpdk-dev] [PATCH v2 2/2] net/mlx5: fix typos Ali Alnubani
2018-11-14 15:04 ` Shahaf Shuler
2018-11-14 15:03 ` [dpdk-dev] [PATCH 1/2] net/mlx4: fix typo Shahaf Shuler
2018-11-14 13:20 ` Shahaf Shuler
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).