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 41CCFA0503; Thu, 19 May 2022 10:49:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2EAE740150; Thu, 19 May 2022 10:49:56 +0200 (CEST) Received: from mail-108-mta105.mxroute.com (mail-108-mta105.mxroute.com [136.175.108.105]) by mails.dpdk.org (Postfix) with ESMTP id AB1AE40140 for ; Thu, 19 May 2022 10:49:54 +0200 (CEST) Received: from filter006.mxroute.com ([140.82.40.27] 140.82.40.27.vultrusercontent.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta105.mxroute.com (ZoneMTA) with ESMTPSA id 180db824e50000c327.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Thu, 19 May 2022 08:49:51 +0000 X-Zone-Loop: 396ce4efe23dd5d039b78c33a0017b5623719081546d X-Originating-IP: [140.82.40.27] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Type:MIME-Version:Message-ID:Date:In-reply-to:Subject:Cc:To: From:References:Sender:Reply-To:Content-Transfer-Encoding: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=PtxjWGTF+qCCn1xeD1XnAbo55CqdsQxCgtW1Fx0Nrt4=; b=UH99r0Fmr34N9W22NJ+7GTDZ2/ h1yigBWbn7Yf/EGRgmrMtOqkuzmeAKIdueHwXYzUG02R8YZlNxgNsm22BUKP9AkGTWg8HpyGSWnxT aftg79lfQu+Zcl3jtWLF/9Bd/Ew/+FfNi8YUGGIrs+ylPoSbaRl6Wpsaii3ExthsXSEk4ILGAB7Hn Nx/rpAvH7F5kP6qy1a4wQaRu1ennqov+CxarnTpESZKL86VHmuEkMN/1eQxnCnMmHwI++srZjvfjL FhyKiURy9CQVZkJIWWu5Q7OSKJyFcmpUrZEvYBG4PyADVaIw3WfCPtm66EB1OUSRy0cIfqO58UlHj Dcqc+WHQ==; References: <33fe903b38d712388230cfa58ee3a64987771918.1652722314.git.sthotton@marvell.com> User-agent: mu4e 1.4.15; emacs 27.1 From: Ray Kinsella To: Shijith Thotton Cc: dev@dpdk.org, jerinj@marvell.com, pbhagavatula@marvell.com, harry.van.haaren@intel.com, mattias.ronnblom@ericsson.com Subject: Re: [PATCH v4 1/5] eventdev: support to set queue attributes at runtime In-reply-to: <33fe903b38d712388230cfa58ee3a64987771918.1652722314.git.sthotton@marvell.com> Date: Thu, 19 May 2022 09:49:48 +0100 Message-ID: <87v8u1c3f7.fsf@mdr78.vserver.site> MIME-Version: 1.0 Content-Type: text/plain X-AuthUser: mdr@ashroe.eu 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 Shijith Thotton writes: > Added a new eventdev API rte_event_queue_attr_set(), to set event queue > attributes at runtime from the values set during initialization using > rte_event_queue_setup(). PMD's supporting this feature should expose the > capability RTE_EVENT_DEV_CAP_RUNTIME_QUEUE_ATTR. > > Signed-off-by: Shijith Thotton > Acked-by: Jerin Jacob > --- > doc/guides/eventdevs/features/default.ini | 1 + > doc/guides/rel_notes/release_22_07.rst | 5 ++++ > lib/eventdev/eventdev_pmd.h | 22 ++++++++++++++++ > lib/eventdev/rte_eventdev.c | 26 ++++++++++++++++++ > lib/eventdev/rte_eventdev.h | 32 ++++++++++++++++++++++- > lib/eventdev/version.map | 3 +++ > 6 files changed, 88 insertions(+), 1 deletion(-) > Acked-by: Ray Kinsella