From 419c3e3e64489b68797f61ba975f81b22c31a641 Mon Sep 17 00:00:00 2001 From: Michal Krawczyk Date: Fri, 14 Dec 2018 14:18:46 +0100 Subject: [PATCH] net/ena: update version to 2.0.0 The ENAv2 is introducing many new features, mainly the LLQ feature (Low Latency Queue) which allows the device to process packets faster and as a result, the latency is noticeably lower. The second major feature is configurable depth of hw queues where Rx and Tx can be reconfigured independently and maximum depth of Rx queue is 8k. The release also includes many bug fixes and minor new features, like improved statistics counters and extended statistics. Driver is still compatible with ENAv1 device. Signed-off-by: Michal Krawczyk --- drivers/net/ena/ena_ethdev.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c index a2c8f1e4a0..3022dda73d 100644 --- a/drivers/net/ena/ena_ethdev.c +++ b/drivers/net/ena/ena_ethdev.c @@ -53,9 +53,9 @@ #include #include -#define DRV_MODULE_VER_MAJOR 1 -#define DRV_MODULE_VER_MINOR 1 -#define DRV_MODULE_VER_SUBMINOR 1 +#define DRV_MODULE_VER_MAJOR 2 +#define DRV_MODULE_VER_MINOR 0 +#define DRV_MODULE_VER_SUBMINOR 0 #define ENA_IO_TXQ_IDX(q) (2 * (q)) #define ENA_IO_RXQ_IDX(q) (2 * (q) + 1) -- 2.20.1