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 23F99A0A02; Wed, 24 Mar 2021 10:16:17 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F1AB4140D04; Wed, 24 Mar 2021 10:16:16 +0100 (CET) Received: from mail-109-mta215.mxroute.com (mail-109-mta215.mxroute.com [136.175.109.215]) by mails.dpdk.org (Postfix) with ESMTP id 3D22240683 for ; Wed, 24 Mar 2021 10:16:15 +0100 (CET) Received: from filter004.mxroute.com ([149.28.56.236] filter004.mxroute.com) (Authenticated sender: mN4UYu2MZsgR) by mail-109-mta215.mxroute.com (ZoneMTA) with ESMTPSA id 1786385180f0004964.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Wed, 24 Mar 2021 09:16:10 +0000 X-Zone-Loop: 6678b8d83c2bc42dae2f1c41607c2e9d4b2ba9ee40db X-Originating-IP: [149.28.56.236] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date: Message-ID:From:References:Cc:To:Subject:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=IgWburyicxT44kKhEDaty76C2jJQoPcAikIuS6xqKoE=; b=SYR4BKr2BbkwmuAbeIe5HuSv7t q28AaVUm8kXmVTjYhp9i1u3ZEeN5iTqsTTP9GytH+IpfKyb5iXIr2jXF+8M4HZAvlIwYwqv8D/C0O PgsolAMFquizLHCj9teN1hlc4AYOGzmnoHo4R3pqLFWQaTcu1ngOXjJJoHxsWlSblDUC60rPVObLd GbQxAQMJ3qXoPsyTwsw6Es+aKa0/Hj0IWLEdbnRamiCVSERudHEEWuDZ/bfdcTIn8uIwc/1ZoDhzJ /eNDe7IcUNAYMbTEBG4fHtJ4RStlOkQE+mrSjWLGvktvhwW1MRyQbr+hylPHWUm9oJHeUcw1RcYj/ PdjLbc9w==; To: pbhagavatula@marvell.com, jerinj@marvell.com, jay.jayatheerthan@intel.com, erik.g.carrillo@intel.com, abhinandan.gujjar@intel.com, timothy.mcdaniel@intel.com, hemant.agrawal@nxp.com, harry.van.haaren@intel.com, mattias.ronnblom@ericsson.com, liang.j.ma@intel.com, Neil Horman Cc: dev@dpdk.org References: <20210319205718.1436-1-pbhagavatula@marvell.com> <20210324050525.4489-1-pbhagavatula@marvell.com> <20210324050525.4489-8-pbhagavatula@marvell.com> From: "Kinsella, Ray" Message-ID: Date: Wed, 24 Mar 2021 09:16:06 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <20210324050525.4489-8-pbhagavatula@marvell.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-AuthUser: mdr@ashroe.eu Subject: Re: [dpdk-dev] [PATCH v5 7/8] doc: announce event Rx adapter config changes 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 24/03/2021 05:05, pbhagavatula@marvell.com wrote: > From: Pavan Nikhilesh > > The Rx adapter event vector configuration will be merged into > Rx adapter queue configuration to simplify enabling event > vectorization. > > Signed-off-by: Pavan Nikhilesh > --- > doc/guides/rel_notes/deprecation.rst | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst > index 64629e064..ef6d1bb18 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -130,3 +130,12 @@ Deprecation Notices > * cmdline: ``cmdline`` structure will be made opaque to hide platform-specific > content. On Linux and FreeBSD, supported prior to DPDK 20.11, > original structure will be kept until DPDK 21.11. > + > +* eventdev: The structure ``rte_event_eth_rx_adapter_queue_conf`` will be > + extended to include ``rte_event_eth_rx_adapter_event_vector_config`` elements > + and the function ``rte_event_eth_rx_adapter_queue_event_vector_config`` will > + be removed in DPDK 21.11. > + > + An application can enable event vectorization by passing the desired vector > + values to the function ``rte_event_eth_rx_adapter_queue_add`` using > + the structure ``rte_event_eth_rx_adapter_queue_add``. Acked-by: Ray Kinsella