* [dpdk-dev] [PATCH] net/ena: update version to 2.0.1
@ 2019-07-16 8:16 Michal Krawczyk
2019-07-16 8:55 ` Ferruh Yigit
0 siblings, 1 reply; 5+ messages in thread
From: Michal Krawczyk @ 2019-07-16 8:16 UTC (permalink / raw)
To: dev; +Cc: gtzalik, matua, mw, igorch, Michal Krawczyk
In 2.0.1 ENA, there were patches for:
* assigning NUMA node to the IO queue
* statistics counters (Rx checksum errors and per-queue number of the
Tx packets)
* SMP support
* setting Rx checksum support
Signed-off-by: Michal Krawczyk <mk@semihalf.com>
---
drivers/net/ena/ena_ethdev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c
index f58334080..a1187851c 100644
--- a/drivers/net/ena/ena_ethdev.c
+++ b/drivers/net/ena/ena_ethdev.c
@@ -55,7 +55,7 @@
#define DRV_MODULE_VER_MAJOR 2
#define DRV_MODULE_VER_MINOR 0
-#define DRV_MODULE_VER_SUBMINOR 0
+#define DRV_MODULE_VER_SUBMINOR 1
#define ENA_IO_TXQ_IDX(q) (2 * (q))
#define ENA_IO_RXQ_IDX(q) (2 * (q) + 1)
--
2.20.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH] net/ena: update version to 2.0.1
2019-07-16 8:16 [dpdk-dev] [PATCH] net/ena: update version to 2.0.1 Michal Krawczyk
@ 2019-07-16 8:55 ` Ferruh Yigit
2019-07-16 10:59 ` [dpdk-dev] [PATCH v2] " Michal Krawczyk
0 siblings, 1 reply; 5+ messages in thread
From: Ferruh Yigit @ 2019-07-16 8:55 UTC (permalink / raw)
To: Michal Krawczyk, dev; +Cc: gtzalik, matua, mw, igorch
On 7/16/2019 9:16 AM, Michal Krawczyk wrote:
> In 2.0.1 ENA, there were patches for:
> * assigning NUMA node to the IO queue
> * statistics counters (Rx checksum errors and per-queue number of the
> Tx packets)
> * SMP support
> * setting Rx checksum support
Hi Michał, ,
Can you please add the commit ids of the patches adds above mentioned features,
for reference?
Thanks,
ferruh
>
> Signed-off-by: Michal Krawczyk <mk@semihalf.com>
> ---
> drivers/net/ena/ena_ethdev.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c
> index f58334080..a1187851c 100644
> --- a/drivers/net/ena/ena_ethdev.c
> +++ b/drivers/net/ena/ena_ethdev.c
> @@ -55,7 +55,7 @@
>
> #define DRV_MODULE_VER_MAJOR 2
> #define DRV_MODULE_VER_MINOR 0
> -#define DRV_MODULE_VER_SUBMINOR 0
> +#define DRV_MODULE_VER_SUBMINOR 1
>
> #define ENA_IO_TXQ_IDX(q) (2 * (q))
> #define ENA_IO_RXQ_IDX(q) (2 * (q) + 1)
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [dpdk-dev] [PATCH v2] net/ena: update version to 2.0.1
2019-07-16 8:55 ` Ferruh Yigit
@ 2019-07-16 10:59 ` Michal Krawczyk
2019-07-16 11:13 ` [dpdk-dev] [PATCH v3] " Michal Krawczyk
0 siblings, 1 reply; 5+ messages in thread
From: Michal Krawczyk @ 2019-07-16 10:59 UTC (permalink / raw)
To: ferruh.yigit; +Cc: dev, gtzalik, matua, mw, igorch, Michal Krawczyk
In 2.0.1 ENA, there were patches for:
* assigning NUMA node to the IO queue
- 4217cb0b7d2c ("net/ena: fix assigning NUMA node to IO queue")
* statistics counters (Rx checksum errors and per-queue number of the
Tx packets)
- ef74b5f7b69b ("net/ena: fix Rx checksum errors statistics")
- 5673e285a633 ("net/ena: fix Tx statistics")
* SMP support
- 117ba4a60488 ("net/ena: get device info statically")
* setting Rx checksum support
- ef538c1a7f56 ("net/ena: fix checksum feature flag")
Signed-off-by: Michal Krawczyk <mk@semihalf.com>
---
v2:
* Added list of commits being part of v2.0.1 to the commit message
drivers/net/ena/ena_ethdev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c
index f58334080..a1187851c 100644
--- a/drivers/net/ena/ena_ethdev.c
+++ b/drivers/net/ena/ena_ethdev.c
@@ -55,7 +55,7 @@
#define DRV_MODULE_VER_MAJOR 2
#define DRV_MODULE_VER_MINOR 0
-#define DRV_MODULE_VER_SUBMINOR 0
+#define DRV_MODULE_VER_SUBMINOR 1
#define ENA_IO_TXQ_IDX(q) (2 * (q))
#define ENA_IO_RXQ_IDX(q) (2 * (q) + 1)
--
2.20.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [dpdk-dev] [PATCH v3] net/ena: update version to 2.0.1
2019-07-16 10:59 ` [dpdk-dev] [PATCH v2] " Michal Krawczyk
@ 2019-07-16 11:13 ` Michal Krawczyk
2019-07-16 20:22 ` Ferruh Yigit
0 siblings, 1 reply; 5+ messages in thread
From: Michal Krawczyk @ 2019-07-16 11:13 UTC (permalink / raw)
To: ferruh.yigit; +Cc: dev, gtzalik, matua, mw, igorch, Michal Krawczyk
In 2.0.1 ENA, there were patches for:
* assigning NUMA node to the IO queue
commit 4217cb0b7d2c ("net/ena: fix assigning NUMA node to IO queue")
* statistics counters (Rx checksum errors and per-queue number of the
Tx packets)
commit ef74b5f7b69b ("net/ena: fix Rx checksum errors statistics")
commit 5673e285a633 ("net/ena: fix Tx statistics")
* SMP support
commit 117ba4a60488 ("net/ena: get device info statically")
* setting Rx checksum support
commit ef538c1a7f56 ("net/ena: fix checksum feature flag")
Signed-off-by: Michal Krawczyk <mk@semihalf.com>
---
v3:
* Fixed commit message style issues found by checkpatch
v2:
* Added list of commits being part of v2.0.1 to the commit message
drivers/net/ena/ena_ethdev.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c
index f58334080..a1187851c 100644
--- a/drivers/net/ena/ena_ethdev.c
+++ b/drivers/net/ena/ena_ethdev.c
@@ -55,7 +55,7 @@
#define DRV_MODULE_VER_MAJOR 2
#define DRV_MODULE_VER_MINOR 0
-#define DRV_MODULE_VER_SUBMINOR 0
+#define DRV_MODULE_VER_SUBMINOR 1
#define ENA_IO_TXQ_IDX(q) (2 * (q))
#define ENA_IO_RXQ_IDX(q) (2 * (q) + 1)
--
2.20.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH v3] net/ena: update version to 2.0.1
2019-07-16 11:13 ` [dpdk-dev] [PATCH v3] " Michal Krawczyk
@ 2019-07-16 20:22 ` Ferruh Yigit
0 siblings, 0 replies; 5+ messages in thread
From: Ferruh Yigit @ 2019-07-16 20:22 UTC (permalink / raw)
To: Michal Krawczyk; +Cc: dev, gtzalik, matua, mw, igorch
On 7/16/2019 12:13 PM, Michal Krawczyk wrote:
> In 2.0.1 ENA, there were patches for:
> * assigning NUMA node to the IO queue
> commit 4217cb0b7d2c ("net/ena: fix assigning NUMA node to IO queue")
> * statistics counters (Rx checksum errors and per-queue number of the
> Tx packets)
> commit ef74b5f7b69b ("net/ena: fix Rx checksum errors statistics")
> commit 5673e285a633 ("net/ena: fix Tx statistics")
> * SMP support
> commit 117ba4a60488 ("net/ena: get device info statically")
> * setting Rx checksum support
> commit ef538c1a7f56 ("net/ena: fix checksum feature flag")
>
> Signed-off-by: Michal Krawczyk <mk@semihalf.com>
Applied to dpdk-next-net/master, thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-07-16 20:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-16 8:16 [dpdk-dev] [PATCH] net/ena: update version to 2.0.1 Michal Krawczyk
2019-07-16 8:55 ` Ferruh Yigit
2019-07-16 10:59 ` [dpdk-dev] [PATCH v2] " Michal Krawczyk
2019-07-16 11:13 ` [dpdk-dev] [PATCH v3] " Michal Krawczyk
2019-07-16 20:22 ` Ferruh Yigit
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).