From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 12AE0A0521 for ; Thu, 23 Jul 2020 19:04:36 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 005AB1BFDA; Thu, 23 Jul 2020 19:04:36 +0200 (CEST) Received: from inva020.nxp.com (inva020.nxp.com [92.121.34.13]) by dpdk.org (Postfix) with ESMTP id 779721BFDA; Thu, 23 Jul 2020 19:04:35 +0200 (CEST) Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 296331A00FA; Thu, 23 Jul 2020 19:04:35 +0200 (CEST) Received: from invc005.ap-rdc01.nxp.com (invc005.ap-rdc01.nxp.com [165.114.16.14]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 11FC91A0114; Thu, 23 Jul 2020 19:04:32 +0200 (CEST) Received: from lsv03186.swis.in-blr01.nxp.com (lsv03186.swis.in-blr01.nxp.com [92.120.146.182]) by invc005.ap-rdc01.nxp.com (Postfix) with ESMTP id 2BF36402AB; Thu, 23 Jul 2020 19:04:28 +0200 (CEST) From: Apeksha Gupta To: jerin.jacob@caviumnetworks.com Cc: dev@dpdk.org, thomas@monjalon.net, hemant.agrawal@nxp.com, nipun.gupta@nxp.com, Apeksha Gupta , stable@dpdk.org Date: Thu, 23 Jul 2020 22:34:25 +0530 Message-Id: <20200723170425.417-1-apeksha.gupta@nxp.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200713114406.4383-2-apeksha.gupta@nxp.com> References: <20200713114406.4383-2-apeksha.gupta@nxp.com> X-Virus-Scanned: ClamAV using ClamSMTP Subject: [dpdk-stable] [PATCH v4 2/2] event/dpaa2: add all type queue capability flag X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" DPAA2 eventdev device is capable of all type queue feature. Fix the capability flag to reflect the same. Fixes: 8f4a294c23 ("event/dpaa2: apply new capability flags") Cc: stable@dpdk.org Signed-off-by: Apeksha Gupta Acked-by: Nipun Gupta --- v4: - removed checkpatch warning - updated commit title and message v3: * Added patch - event/dpaa2: Add all type queue capability flag v2: * Removed unrequired patches - app/test-eventdev: Enhancing perf-queue packet flow - app/test-eventdev: Removed unwanted checks - event/dpaa2: Add all type queue capability flag - app/test-eventdev: Enhancing perf-atq packet flow - app/test-eventdev: fix eventdev queues --- drivers/event/dpaa2/dpaa2_eventdev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/event/dpaa2/dpaa2_eventdev.c b/drivers/event/dpaa2/dpaa2_eventdev.c index 0072db153b..14dcc50d4a 100644 --- a/drivers/event/dpaa2/dpaa2_eventdev.c +++ b/drivers/event/dpaa2/dpaa2_eventdev.c @@ -407,7 +407,8 @@ dpaa2_eventdev_info_get(struct rte_eventdev *dev, RTE_EVENT_DEV_CAP_BURST_MODE| RTE_EVENT_DEV_CAP_RUNTIME_PORT_LINK | RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT | - RTE_EVENT_DEV_CAP_NONSEQ_MODE; + RTE_EVENT_DEV_CAP_NONSEQ_MODE | + RTE_EVENT_DEV_CAP_QUEUE_ALL_TYPES; } -- 2.17.1