net/ena: update version to v2.3.0

This version update contains:
  * memcpy mapping to the dpdk-optimized version.
  * ena_com (HAL) update to the latest version (from 18.09.2020).
  * Bug fixes for the large LLQ headers and devargs parsing.
  * Bug fix for the default ring size.

Signed-off-by: Michal Krawczyk <mk@semihalf.com>
This commit is contained in:
Michal Krawczyk 2021-05-11 08:45:54 +02:00 committed by Ferruh Yigit
parent 30a6c7ef40
commit 1b48c60d05
2 changed files with 4 additions and 4 deletions

View File

@ -2,5 +2,5 @@
* Copyright (c) 2015-2020 Amazon.com, Inc. or its affiliates.
* All rights reserved.
*/
#define ENA_GEN_DATE "Sun Apr 26 13:45:21 DST 2020"
#define ENA_GEN_COMMIT "37aa7c3"
#define ENA_GEN_DATE "Fri Sep 18 17:09:00 IDT 2020"
#define ENA_GEN_COMMIT "0f80d82"

View File

@ -27,8 +27,8 @@
#include <ena_eth_io_defs.h>
#define DRV_MODULE_VER_MAJOR 2
#define DRV_MODULE_VER_MINOR 2
#define DRV_MODULE_VER_SUBMINOR 1
#define DRV_MODULE_VER_MINOR 3
#define DRV_MODULE_VER_SUBMINOR 0
#define ENA_IO_TXQ_IDX(q) (2 * (q))
#define ENA_IO_RXQ_IDX(q) (2 * (q) + 1)