[v3] net/ena: update version to 2.0.1

Message ID 20190716111332.16745-1-mk@semihalf.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers
Series [v3] net/ena: update version to 2.0.1 |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK
ci/mellanox-Performance-Testing success Performance Testing PASS
ci/intel-Performance-Testing success Performance Testing PASS

Commit Message

Michal Krawczyk July 16, 2019, 11:13 a.m. UTC
  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(-)
  

Comments

Ferruh Yigit July 16, 2019, 8:22 p.m. UTC | #1
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.
  

Patch

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)