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 AA51742CB2; Mon, 19 Jun 2023 11:39:39 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7F0FA40DF8; Mon, 19 Jun 2023 11:39:39 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 1243540A81 for ; Mon, 19 Jun 2023 11:39:38 +0200 (CEST) Received: from [192.168.1.40] (unknown [188.170.81.161]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 1CA0750; Mon, 19 Jun 2023 12:39:37 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 1CA0750 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1687167577; bh=L592jPjhQjreRplJ9QIXVh1FXiuCBE+AMK4HtU3bAHE=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=s8Nk8unKznGeB/2ZgcXoXum6/CiC8WoISty3BnbJmFQOY077EKknt836A0csGzrCR Q46UHuntn5X2juDNN/MOfsayXYan2XnPEzDiiXK9jA7KANI0GET81BqDlPYJ6IJqfq btpMKe8jNAxvZtebdOEyvO7S/ioFGGqVJeW4JNVw= Message-ID: Date: Mon, 19 Jun 2023 12:39:30 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 Subject: Re: [PATCH v2 3/3] net/sfc: support FEC feature To: Denis Pryazhennikov , dev@dpdk.org Cc: Ferruh Yigit , Ivan Malov , Andy Moreton References: <20230601222349.28965-1-denis.pryazhennikov@arknetworks.am> <20230615083847.75590-1-denis.pryazhennikov@arknetworks.am> <20230615083847.75590-4-denis.pryazhennikov@arknetworks.am> Content-Language: en-US From: Andrew Rybchenko In-Reply-To: <20230615083847.75590-4-denis.pryazhennikov@arknetworks.am> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 On 6/15/23 11:38, Denis Pryazhennikov wrote: > Support ethdev methods to query and set FEC information. > Limitations: ignoring rte_eth_fec_get_capability() results > can lead to NOFEC if the device is not strated. > > Signed-off-by: Denis Pryazhennikov > Reviewed-by: Ivan Malov > Reviewed-by: Andy Moreton > Reviewed-by: Ferruh Yigit Acked-by: Andrew Rybchenko > diff --git a/doc/guides/rel_notes/release_23_07.rst b/doc/guides/rel_notes/release_23_07.rst > index 027ae7bd2d64..59a215a4a4f8 100644 > --- a/doc/guides/rel_notes/release_23_07.rst > +++ b/doc/guides/rel_notes/release_23_07.rst > @@ -170,6 +170,12 @@ New Features > > See :doc:`../prog_guide/pdcp_lib` for more information. > > +* **Updated Solarflare network PMD.** > + > + Updated the Solarflare ``sfc_efx`` driver with changes including: > + > + * Added support for configuring FEC mode, querying FEC capabilities and > + current FEC mode from a device. Extra empty line is required here. Two empty lines before the next section. > > Removed Items > ------------- [snip]