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 2982DA0C41; Wed, 15 Sep 2021 15:18:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D47ED4014F; Wed, 15 Sep 2021 15:18:49 +0200 (CEST) Received: from mail-108-mta243.mxroute.com (mail-108-mta243.mxroute.com [136.175.108.243]) by mails.dpdk.org (Postfix) with ESMTP id 154314003C for ; Wed, 15 Sep 2021 15:18:47 +0200 (CEST) Received: from filter004.mxroute.com ([149.28.56.236] filter004.mxroute.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta243.mxroute.com (ZoneMTA) with ESMTPSA id 17be99c181000074ba.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Wed, 15 Sep 2021 13:18:46 +0000 X-Zone-Loop: d841380c8c68f70105c9610606dd1c5585df755f423b 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=BrsYyBJwN2ly2PVjLW2muCQxzWwJrlmkzmU1u47wiu0=; b=eoe3Q0fismBQe8kCJaHQK09ocV VAljMhPSORnqO1AM7b2ziPzDqy3UfuEgyL6HcOnyPLffc9IOIccdqzKNbyt+46rIAdeBKBF5ifKCj wnaKNBShDwTjO08+odS95Gp4zRYUDRjlW6kjXUyH1d5ie54VBsjbqNgbZRedPrvtww9QZEqMp1Tt7 /0W9/aQiscC8Vc3mnyeidMkzpwOikUuN5EkcHKUW1Zm3xFcfauyTZektmerxrGmeCSMjw/scN/AOP 2HzNrfhnEX+LY2pr7jhVy1ctOs0q1mVZjVVO3CWN+IcVBYzFxvDWkVIBpQhda0RZ0uNrEhjKO04Lp MHWsH5AQ==; To: pbhagavatula@marvell.com, jerinj@marvell.com, Jay Jayatheerthan , Shijith Thotton Cc: dev@dpdk.org References: <20210818065728.1877-1-pbhagavatula@marvell.com> <20210915131521.319-1-pbhagavatula@marvell.com> From: "Kinsella, Ray" Message-ID: <3cb891ed-9c6d-29a2-ef0b-ee8bc24ac6b8@ashroe.eu> Date: Wed, 15 Sep 2021 14:18:42 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20210915131521.319-1-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 v14] eventdev: simplify Rx adapter event vector config 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 15/09/2021 14:15, pbhagavatula@marvell.com wrote: > From: Pavan Nikhilesh > > Include vector configuration into the structure > ``rte_event_eth_rx_adapter_queue_conf`` that is used to configure > Rx adapter ethernet device Rx queue parameters. > This simplifies event vector configuration as it avoids splitting > configuration per Rx queue. > > Signed-off-by: Pavan Nikhilesh > Acked-by: Jay Jayatheerthan > --- > v14 Changes: > - Update documentation. > v13 Changes: > - Fix cnxk driver compilation. > v12 Changes: > - Remove deprication notice. > - Remove unnecessary change Id. > > app/test-eventdev/test_pipeline_common.c | 16 +- > .../prog_guide/event_ethernet_rx_adapter.rst | 11 +- > doc/guides/rel_notes/deprecation.rst | 9 - > drivers/event/cnxk/cn10k_eventdev.c | 77 -------- > drivers/event/cnxk/cnxk_eventdev_adptr.c | 41 ++++ > lib/eventdev/eventdev_pmd.h | 29 --- > lib/eventdev/rte_event_eth_rx_adapter.c | 179 ++++++------------ > lib/eventdev/rte_event_eth_rx_adapter.h | 30 --- > lib/eventdev/version.map | 1 - > 9 files changed, 112 insertions(+), 281 deletions(-) FYI - deprication is spelt deprecation Acked-by: Ray Kinsella