From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 875A543209; Thu, 26 Oct 2023 16:22:52 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7B87542E4F; Thu, 26 Oct 2023 16:22:35 +0200 (CEST) Received: from smtp-fw-52002.amazon.com (smtp-fw-52002.amazon.com [52.119.213.150]) by mails.dpdk.org (Postfix) with ESMTP id 159044068A for ; Thu, 26 Oct 2023 16:22:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1698330144; x=1729866144; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=kz7obeVovEGIAuXAWllSk/4udrMS2PE4+KcnPyHwxo4=; b=WXfzUGJVVMvFx+KxiTqwGOGvZmQADL82bT4cz9LYi+xFMdTP40BLqTn+ wZ/ZhhQYKDv96aiZtm9R9JkxNN5mDCJwKcxhp5KlGGBblfthFRd+IYs/D DzHMx/kLMCC2gIY3oWUzohNWxfIK5UD8AzSLA3goU3jsk5uvFIdcgZzgE Q=; X-IronPort-AV: E=Sophos;i="6.03,253,1694736000"; d="scan'208";a="591441762" Received: from iad12-co-svc-p1-lb1-vlan3.amazon.com (HELO email-inbound-relay-pdx-2c-m6i4x-fad5e78e.us-west-2.amazon.com) ([10.43.8.6]) by smtp-border-fw-52002.iad7.amazon.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2023 14:22:22 +0000 Received: from smtpout.prod.us-east-1.prod.farcaster.email.amazon.dev (pdx2-ws-svc-p26-lb5-vlan3.pdx.amazon.com [10.39.38.70]) by email-inbound-relay-pdx-2c-m6i4x-fad5e78e.us-west-2.amazon.com (Postfix) with ESMTPS id 6BBA6A014E; Thu, 26 Oct 2023 14:22:20 +0000 (UTC) Received: from EX19MTAEUB002.ant.amazon.com [10.0.17.79:36083] by smtpin.naws.eu-west-1.prod.farcaster.email.amazon.dev [10.0.38.116:2525] with esmtp (Farcaster) id 63fbbe48-3a5a-434c-9d74-4c5490eb84ff; Thu, 26 Oct 2023 14:22:19 +0000 (UTC) X-Farcaster-Flow-ID: 63fbbe48-3a5a-434c-9d74-4c5490eb84ff Received: from EX19D037EUB001.ant.amazon.com (10.252.61.30) by EX19MTAEUB002.ant.amazon.com (10.252.51.59) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1118.39; Thu, 26 Oct 2023 14:22:19 +0000 Received: from EX19MTAUWC001.ant.amazon.com (10.250.64.145) by EX19D037EUB001.ant.amazon.com (10.252.61.30) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1118.39; Thu, 26 Oct 2023 14:22:18 +0000 Received: from HFA15-CG15235BS.amazon.com (10.85.143.173) by mail-relay.amazon.com (10.250.64.145) with Microsoft SMTP Server id 15.2.1118.39 via Frontend Transport; Thu, 26 Oct 2023 14:22:16 +0000 From: To: CC: , , , , Subject: [PATCH v3 5/5] net/ena: update ena version to 2.8.0 Date: Thu, 26 Oct 2023 17:21:35 +0300 Message-ID: <20231026142135.19967-6-shaibran@amazon.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20231026142135.19967-1-shaibran@amazon.com> References: <20231026142135.19967-1-shaibran@amazon.com> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Shai Brandes This release introduces: * Upgraded ENA HAL. * Support for connection tracking allowance utilization metric. * Support for reporting rx overrun errors in xstats. * Support for ENA-express metrics. Signed-off-by: Shai Brandes Reviewed-by: Amit Bernstein --- 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 009ee425fe..bb0a645a30 100644 --- a/drivers/net/ena/ena_ethdev.c +++ b/drivers/net/ena/ena_ethdev.c @@ -21,7 +21,7 @@ #include #define DRV_MODULE_VER_MAJOR 2 -#define DRV_MODULE_VER_MINOR 7 +#define DRV_MODULE_VER_MINOR 8 #define DRV_MODULE_VER_SUBMINOR 0 #define __MERGE_64B_H_L(h, l) (((uint64_t)h << 32) | l) -- 2.17.1