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 3A4E7A0A0F; Wed, 30 Jun 2021 15:58:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1B28040141; Wed, 30 Jun 2021 15:58:02 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id BDD2B40040 for ; Wed, 30 Jun 2021 15:58:00 +0200 (CEST) Received: from [192.168.1.71] (unknown [188.170.72.30]) (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 A435D7F52A; Wed, 30 Jun 2021 16:57:59 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru A435D7F52A DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1625061480; bh=Ell7ixDzh5PBa+hd/cdgM0FlbR5NYyjAjBneDjxQ6YQ=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=Cd4DY8/R0yBarnrJflVP37RTuV1jgNqfSMFFmjzh8UmqvstrP3lawcXKYXsGj0gKK ixF+nVmKWycCFVl1tuDAvc3whNncoWZfq1dBbo6Vxkq1JR5GgLsmfkAdJGtFnqvrWB XP1KOSgJtQ40MNL3DDTcBUw6I9TOMsyqG/wt5GZU= To: Ferruh Yigit , Ray Kinsella , Neil Horman Cc: dev@dpdk.org, Andrew Rybchenko , Thomas Monjalon , David Marchand , Qi Z Zhang , Raslan Darawsheh , Ajit Khaparde , Jerin Jacob Kollanukkaran References: <20210630092117.1368109-1-ferruh.yigit@intel.com> From: Andrew Rybchenko Message-ID: <68737954-268f-d931-a65c-fedb3cba19a7@oktetlabs.ru> Date: Wed, 30 Jun 2021 16:57:57 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 In-Reply-To: <20210630092117.1368109-1-ferruh.yigit@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] doc: announce common prefix for ethdev 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 6/30/21 12:21 PM, Ferruh Yigit wrote: > Announce adding 'RTE_ETH_' prefix to all public ethdev macros/enums on > v21.11. > Backward compatibility macros will be added on v21.11 and they will be > removed on v22.11. > > Signed-off-by: Ferruh Yigit > --- > Cc: Andrew Rybchenko > Cc: Thomas Monjalon > Cc: David Marchand > Cc: Qi Z Zhang > Cc: Raslan Darawsheh > Cc: Ajit Khaparde > Cc: Jerin Jacob Kollanukkaran > --- > doc/guides/rel_notes/deprecation.rst | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst > index 9584d6bfd723..ae79673e37e3 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -118,6 +118,11 @@ Deprecation Notices > consistent with existing outer header checksum status flag naming, which > should help in reducing confusion about its usage. > > +* ethdev: Will add 'RTE_ETH_' prefix to all ethdev macros/enums in v21.11. Macros > + will be added for backward compatibility. Backward compatibility macros will be > + removed on v22.11. A few old backward compatibility macros from 2013 that does > + not have proper prefix will be removed on v21.11. > + > * i40e: As there are both i40evf and iavf pmd, the functions of them are > duplicated. And now more and more advanced features are developed on iavf. > To keep consistent with kernel driver's name > Acked-by: Andrew Rybchenko