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 501B2A0C43; Wed, 12 May 2021 14:21:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F0A54003F; Wed, 12 May 2021 14:21:12 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 743D64003E for ; Wed, 12 May 2021 14:21:10 +0200 (CEST) IronPort-SDR: R2SA5W+wOPlS/t0Ya5F5YzgyLybEZWjkme3o8c3748dDt4T/9AfL30k92ELIqZzh/FBNILLkrN 5cr6VAH9uI9w== X-IronPort-AV: E=McAfee;i="6200,9189,9981"; a="196594036" X-IronPort-AV: E=Sophos;i="5.82,293,1613462400"; d="scan'208";a="196594036" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 May 2021 05:21:04 -0700 IronPort-SDR: u4wEOU2a4YsOSjWWtmtPyaBEIxq3Ccckqz2rZGA5Vot2vtfU+kYPmCLSUMzJLQ5Dd5wAPsTEsd U4Ei6YEPnj6g== X-IronPort-AV: E=Sophos;i="5.82,293,1613462400"; d="scan'208";a="609903151" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.210.216]) ([10.213.210.216]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 May 2021 05:21:02 -0700 To: Michal Krawczyk Cc: dev@dpdk.org, ndagan@amazon.com, gtzalik@amazon.com, igorch@amazon.com, upstream@semihalf.com References: <20210512101346.24803-1-mk@semihalf.com> From: Ferruh Yigit X-User: ferruhy Message-ID: <53ac740b-da8e-a4a4-0d4a-9990b6c7c80f@intel.com> Date: Wed, 12 May 2021 13:20:58 +0100 MIME-Version: 1.0 In-Reply-To: <20210512101346.24803-1-mk@semihalf.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v5 0/3] net/ena: update ENA PMD 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/12/2021 11:13 AM, Michal Krawczyk wrote: > Hi, > > this version updates the driver to version 2.3.0, which fixes multiple > bugs, contains part of the work on making the ENA PMD fully MP aware, and > also updates HAL to the latest version. > > More detailed list of changes: > * 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 the SMP mode. > > Since v5, the series contains only 3, unmerged patches. > > v5: > * Indicate RSS hash offload in the Rx capabilities field. > * Changes made to 'making the ethdev references multiprocess safe: > - rework commit log, > - remove adapter::port_id field. > * Change made to "disable dev ops not supported by secondary process": > - rework commit log. > > v4: > * Remove patches adding shared memory for SMP: > - net/ena: move default RSS key to shared mem > - net/ena: support SMP for mz alloc counter > * Move release notes to the related patches. > * Squash HAL version update patch with the same commit for the core driver. > * Change names of the macros arguments in the "net/ena/base: destroy > multiple "wait events" patch. > * Removed call to the rte_panic(). > * Squashed ena_com version update with the driver version update. > * Fix multiple checkpatch warnings. > * Fix issues found in the commit logs. > > v3: > * Fix build of the PMD with the debug flags enabled. > * Fix typo in the commit log of the version upgrade patch. > > v2: > * Fix nested declaration of the rte_memcpy on arm64 architecture. > > Michal Krawczyk (1): > net/ena: indicate Rx RSS hash presence > > Stanislaw Kardach (2): > net/ena: make ethdev references multiprocess safe > net/ena: disable dev ops not supported by secondary process > Series applied to dpdk-next-net/main, thanks.