From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9A967C433B4 for ; Fri, 7 May 2021 16:50:28 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 0A3326145E for ; Fri, 7 May 2021 16:50:27 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0A3326145E Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 363844013F; Fri, 7 May 2021 18:50:27 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id D37AB40040 for ; Fri, 7 May 2021 18:50:24 +0200 (CEST) IronPort-SDR: 7gzkGcMFCfsy54QlXt96WcmAAQyc9+cyacS0c2g/9BospV1B7UJSNUHx3aNBxu0r6ZumNHDQKK j1VdJaNOKh9A== X-IronPort-AV: E=McAfee;i="6200,9189,9977"; a="196750344" X-IronPort-AV: E=Sophos;i="5.82,281,1613462400"; d="scan'208";a="196750344" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 May 2021 09:50:23 -0700 IronPort-SDR: +pjFeR+XUCY2dae6CXgxRI+n/HAHnwBJzxnuz7+FghwodJ1elpGM3C69R4pwk+4ELKZs1a9mAU YA1TCzHRNllQ== X-IronPort-AV: E=Sophos;i="5.82,281,1613462400"; d="scan'208";a="431443348" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.210.230]) ([10.213.210.230]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 May 2021 09:50:22 -0700 To: Michal Krawczyk , dev@dpdk.org Cc: ndagan@amazon.com, gtzalik@amazon.com, igorch@amazon.com, upstream@semihalf.com References: <20210505073348.6394-1-mk@semihalf.com> <20210506142526.28245-1-mk@semihalf.com> <20210506142526.28245-23-mk@semihalf.com> From: Ferruh Yigit X-User: ferruhy Message-ID: <69b9778b-558a-7672-edfd-d1234c1ce335@intel.com> Date: Fri, 7 May 2021 17:50:20 +0100 MIME-Version: 1.0 In-Reply-To: <20210506142526.28245-23-mk@semihalf.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v3 22/22] net/ena: update version to v2.3.0 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 Sender: "dev" On 5/6/2021 3:25 PM, Michal Krawczyk wrote: > This version update contains: > * memcpy mapping to the dpdk-optimized version. > * ena_com (HAL) update to the latest version. > * Bug fixes for the large LLQ headers and devargs parsing. > * Mbuf RSS hash presence indication. > * Bug fix for the default ring size. > * Various fixes for SMP mode (although ENA is not fully MP aware, yet). > There is another patch (09/22) updates "update generation date and commit", not sure what it is but it looks like base code generation date, does it make sense to squash that patch to this one? > Signed-off-by: Michal Krawczyk > --- > v3: > * Fix typo in the commit log (double "the") > > doc/guides/rel_notes/release_21_05.rst | 13 +++++++++++++ > drivers/net/ena/ena_ethdev.c | 4 ++-- > 2 files changed, 15 insertions(+), 2 deletions(-) > > diff --git a/doc/guides/rel_notes/release_21_05.rst b/doc/guides/rel_notes/release_21_05.rst > index 30dec1c1d1..8cf9afa050 100644 > --- a/doc/guides/rel_notes/release_21_05.rst > +++ b/doc/guides/rel_notes/release_21_05.rst > @@ -287,6 +287,19 @@ New Features > * Added support for crypto adapter forward mode in octeontx2 event and crypto > device driver. > > +* **Updated Amazon ENA PMD.** > + > + The new driver version (v2.3.0) introduces bug fixes and improvements, > + including: > + > + * Changed memcpy mapping to the dpdk-optimized version. > + * Updated ena_com (HAL) to the latest version. > + * Fixed bugs when requesting large LLQ headers using the devargs. > + * Added indication of the RSS hash presence in the mbuf. > + * Fixed bug when the default ring size was set. > + * Add multiple fixes for the SMP mode (although ENA is not fully MP aware, > + yet). > + > Instead of a separate patch for release updates, can you please distribute the items here to the patch that introduces it? > Removed Items > ------------- > diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c > index c5d8e7d43e..e1e086f31e 100644 > --- a/drivers/net/ena/ena_ethdev.c > +++ b/drivers/net/ena/ena_ethdev.c > @@ -27,8 +27,8 @@ > #include > > #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) >