* [dpdk-dev] [PATCH] doc/guides/eventdevs: removing typing error in documentation of eventdevs
@ 2020-05-14 15:26 Muhammad Bilal
2020-05-14 15:32 ` Jerin Jacob
2020-05-15 16:50 ` [dpdk-dev] [PATCH v2] removing typing error of word 'through' in multiple places Muhammad Bilal
0 siblings, 2 replies; 4+ messages in thread
From: Muhammad Bilal @ 2020-05-14 15:26 UTC (permalink / raw)
To: jerinj, hemant.agrawal; +Cc: dev, Muhammad Bilal, stable
Bugzilla ID: 477
Cc: dev@dpdk.org
Cc: stable@dpdk.org
Cc: jerinj@marvell.com
Signed-off-by: Muhammad Bilal <m.bilal@emumba.com>
---
doc/guides/eventdevs/index.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guides/eventdevs/index.rst b/doc/guides/eventdevs/index.rst
index 570905b81..bb66a5eac 100644
--- a/doc/guides/eventdevs/index.rst
+++ b/doc/guides/eventdevs/index.rst
@@ -5,7 +5,7 @@ Event Device Drivers
====================
The following are a list of event device PMDs, which can be used from an
-application trough the eventdev API.
+application through the eventdev API.
.. toctree::
:maxdepth: 2
--
2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] doc/guides/eventdevs: removing typing error in documentation of eventdevs
2020-05-14 15:26 [dpdk-dev] [PATCH] doc/guides/eventdevs: removing typing error in documentation of eventdevs Muhammad Bilal
@ 2020-05-14 15:32 ` Jerin Jacob
2020-05-15 16:50 ` [dpdk-dev] [PATCH v2] removing typing error of word 'through' in multiple places Muhammad Bilal
1 sibling, 0 replies; 4+ messages in thread
From: Jerin Jacob @ 2020-05-14 15:32 UTC (permalink / raw)
To: Muhammad Bilal; +Cc: Jerin Jacob, Hemant Agrawal, dpdk-dev, dpdk stable
On Thu, May 14, 2020 at 8:58 PM Muhammad Bilal <m.bilal@emumba.com> wrote:
>
> Bugzilla ID: 477
> Cc: dev@dpdk.org
> Cc: stable@dpdk.org
> Cc: jerinj@marvell.com
> Signed-off-by: Muhammad Bilal <m.bilal@emumba.com>
The same typo repeated for other places as well. Please send a single
patch for fixing all in one shot.
[master][dpdk.org] $ grep -ri "trough" *
doc/guides/eventdevs/index.rst:application trough the eventdev API.
drivers/net/mlx5/mlx5.c: * We have to perform
identification trough the ports.
lib/librte_vhost/rte_vhost.h: * about waiting packets. This is the
interrupt handling trough
> ---
> doc/guides/eventdevs/index.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/doc/guides/eventdevs/index.rst b/doc/guides/eventdevs/index.rst
> index 570905b81..bb66a5eac 100644
> --- a/doc/guides/eventdevs/index.rst
> +++ b/doc/guides/eventdevs/index.rst
> @@ -5,7 +5,7 @@ Event Device Drivers
> ====================
>
> The following are a list of event device PMDs, which can be used from an
> -application trough the eventdev API.
> +application through the eventdev API.
>
> .. toctree::
> :maxdepth: 2
> --
> 2.17.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [dpdk-dev] [PATCH v2] removing typing error of word 'through' in multiple places
2020-05-14 15:26 [dpdk-dev] [PATCH] doc/guides/eventdevs: removing typing error in documentation of eventdevs Muhammad Bilal
2020-05-14 15:32 ` Jerin Jacob
@ 2020-05-15 16:50 ` Muhammad Bilal
2020-05-19 13:50 ` [dpdk-dev] [dpdk-stable] " Thomas Monjalon
1 sibling, 1 reply; 4+ messages in thread
From: Muhammad Bilal @ 2020-05-15 16:50 UTC (permalink / raw)
To: jerinj, shahafs, xiaolong.ye
Cc: dev, Muhammad Bilal, stable, matan, maxime.coquelin
Removed the typing error in doc/guides/eventdevs/index.rst,
drivers/net/mlx5/mlx5.c and in lib/librte_vhost/rte_vhost.h
Cc: dev@dpdk.org
Cc: stable@dpdk.org
Cc: jerinj@marvell.com
Cc: matan@mellanox.com
Cc: shahafs@mellanox.com
Cc: maxime.coquelin@redhat.com
Cc: xiaolong.ye@intel.com
Signed-off-by: Muhammad Bilal <m.bilal@emumba.com>
---
doc/guides/eventdevs/index.rst | 2 +-
drivers/net/mlx5/mlx5.c | 2 +-
lib/librte_vhost/rte_vhost.h | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/guides/eventdevs/index.rst b/doc/guides/eventdevs/index.rst
index 570905b81..bb66a5eac 100644
--- a/doc/guides/eventdevs/index.rst
+++ b/doc/guides/eventdevs/index.rst
@@ -5,7 +5,7 @@ Event Device Drivers
====================
The following are a list of event device PMDs, which can be used from an
-application trough the eventdev API.
+application through the eventdev API.
.. toctree::
:maxdepth: 2
diff --git a/drivers/net/mlx5/mlx5.c b/drivers/net/mlx5/mlx5.c
index 4f704cbef..264f4928a 100644
--- a/drivers/net/mlx5/mlx5.c
+++ b/drivers/net/mlx5/mlx5.c
@@ -3382,7 +3382,7 @@ mlx5_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
/*
* Single IB device with multiple ports found,
* it may be E-Switch master device and representors.
- * We have to perform identification trough the ports.
+ * We have to perform identification through the ports.
*/
MLX5_ASSERT(nl_rdma >= 0);
MLX5_ASSERT(ns == 0);
diff --git a/lib/librte_vhost/rte_vhost.h b/lib/librte_vhost/rte_vhost.h
index 5c72fba79..d43669f2c 100644
--- a/lib/librte_vhost/rte_vhost.h
+++ b/lib/librte_vhost/rte_vhost.h
@@ -259,7 +259,7 @@ struct vhost_device_ops {
/**
* This callback gets called each time a guest gets notified
- * about waiting packets. This is the interrupt handling trough
+ * about waiting packets. This is the interrupt handling through
* the eventfd_write(callfd), which can be used for counting these
* "slow" syscalls.
*/
--
2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [dpdk-stable] [PATCH v2] removing typing error of word 'through' in multiple places
2020-05-15 16:50 ` [dpdk-dev] [PATCH v2] removing typing error of word 'through' in multiple places Muhammad Bilal
@ 2020-05-19 13:50 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2020-05-19 13:50 UTC (permalink / raw)
To: Muhammad Bilal
Cc: jerinj, shahafs, xiaolong.ye, stable, dev, matan, maxime.coquelin
15/05/2020 18:50, Muhammad Bilal:
> Removed the typing error in doc/guides/eventdevs/index.rst,
> drivers/net/mlx5/mlx5.c and in lib/librte_vhost/rte_vhost.h
>
> Cc: dev@dpdk.org
> Cc: stable@dpdk.org
> Cc: jerinj@marvell.com
> Cc: matan@mellanox.com
> Cc: shahafs@mellanox.com
> Cc: maxime.coquelin@redhat.com
> Cc: xiaolong.ye@intel.com
> Signed-off-by: Muhammad Bilal <m.bilal@emumba.com>
Fixes: 0857b9421138 ("doc: add event device and software eventdev")
Fixes: 039253166a57 ("vhost: add device op when notification to guest is sent")
Fixes: ad74bc619504 ("net/mlx5: support multiport IB device during probing")
Cc: stable@dpdk.org
Applied, thanks
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-05-19 13:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-14 15:26 [dpdk-dev] [PATCH] doc/guides/eventdevs: removing typing error in documentation of eventdevs Muhammad Bilal
2020-05-14 15:32 ` Jerin Jacob
2020-05-15 16:50 ` [dpdk-dev] [PATCH v2] removing typing error of word 'through' in multiple places Muhammad Bilal
2020-05-19 13:50 ` [dpdk-dev] [dpdk-stable] " 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).