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 CFF6AA0032 for ; Fri, 24 Jun 2022 17:02:33 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C587F4069D; Fri, 24 Jun 2022 17:02:33 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 078F44281B for ; Fri, 24 Jun 2022 17:02:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1656082952; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=+NSLGxTO9nEovgpIIbSeSvNw9jJt5uVCMx5UO3DIoHo=; b=WT1liUksyWlK3Pnd+fGmKLIzMDA3cAZiuxviqIhsNLPvACNwl4oP1gTPtLGBZZ/wmQcHVI G1dNk36AYu9gz/FQJD9D75SOUxJNJ5hAoPZbDAODjFqnVnueVPcQKB3ghJkWolEOnWiK6C MLLa7q9+1ywGjIouoLbkcUtv1/ApvUo= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-206-llWI18iRNsyTWvmte5MHwQ-1; Fri, 24 Jun 2022 11:02:28 -0400 X-MC-Unique: llWI18iRNsyTWvmte5MHwQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 88510811E81; Fri, 24 Jun 2022 15:02:27 +0000 (UTC) Received: from rh.redhat.com (unknown [10.39.194.217]) by smtp.corp.redhat.com (Postfix) with ESMTP id CA19C9D63; Fri, 24 Jun 2022 15:02:26 +0000 (UTC) From: Kevin Traynor To: Timothy McDaniel Cc: dpdk stable Subject: patch 'event/dlb2: fix advertized capabilities' has been queued to stable release 21.11.2 Date: Fri, 24 Jun 2022 16:01:30 +0100 Message-Id: <20220624150148.1855580-22-ktraynor@redhat.com> In-Reply-To: <20220624150148.1855580-1-ktraynor@redhat.com> References: <20220624150148.1855580-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.11.54.5 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ktraynor@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 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 Hi, FYI, your patch has been queued to stable release 21.11.2 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 06/27/22. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/19591ad643beff1329bed61d4556521586248123 Thanks. Kevin --- >From 19591ad643beff1329bed61d4556521586248123 Mon Sep 17 00:00:00 2001 From: Timothy McDaniel Date: Mon, 13 Jun 2022 13:19:14 -0500 Subject: [PATCH] event/dlb2: fix advertized capabilities [ upstream commit d39e23f26e1ef27fa3402da321f98b307d8c9419 ] This commit corrects the advertized capabilities reported by the DLB2 PMD. Previously DLB2 reported supporting RTE_EVENT_DEV_CAP_QUEUE_QOS, but the DLB2 hardware does not support such capability. This commit removes that feature from the reported capabilities feature set. Additionally, two capabilities that DLB2 does support were not being reported in the capabilities feature set. This commit adds those. RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT = Event device is capable of setting up the link between multiple queues and a single port. If the flag is not set, the eventdev can only map a single queue to each port or map a single queue to many port RTE_EVENT_DEV_CAP_RUNTIME_PORT_LINK = Event device is capable of configuring the queue/port link at runtime. If the flag is not set, the eventdev queue/port link is only can be configured during initialization Finally, the file doc/guides/eventdevs/features/dlb2.ini has been updated to match the capabilities actually reported by the PMD. Fixes: e7c9971a857a ("event/dlb2: add probe-time hardware init") Signed-off-by: Timothy McDaniel --- doc/guides/eventdevs/features/dlb2.ini | 3 ++- drivers/event/dlb2/dlb2.c | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/doc/guides/eventdevs/features/dlb2.ini b/doc/guides/eventdevs/features/dlb2.ini index 29747b1c26..48a2a18aff 100644 --- a/doc/guides/eventdevs/features/dlb2.ini +++ b/doc/guides/eventdevs/features/dlb2.ini @@ -5,5 +5,4 @@ ; [Scheduling Features] -queue_qos = Y event_qos = Y distributed_sched = Y @@ -11,4 +10,6 @@ queue_all_types = Y burst_mode = Y implicit_release_disable = Y +runtime_port_link = Y +multiple_queue_port = Y maintenance_free = Y diff --git a/drivers/event/dlb2/dlb2.c b/drivers/event/dlb2/dlb2.c index 7789dd74e0..543f793ed1 100644 --- a/drivers/event/dlb2/dlb2.c +++ b/drivers/event/dlb2/dlb2.c @@ -62,10 +62,11 @@ static struct rte_event_dev_info evdev_dlb2_default_info = { .max_single_link_event_port_queue_pairs = DLB2_MAX_NUM_DIR_PORTS(DLB2_HW_V2), - .event_dev_cap = (RTE_EVENT_DEV_CAP_QUEUE_QOS | - RTE_EVENT_DEV_CAP_EVENT_QOS | - RTE_EVENT_DEV_CAP_BURST_MODE | + .event_dev_cap = (RTE_EVENT_DEV_CAP_EVENT_QOS | RTE_EVENT_DEV_CAP_DISTRIBUTED_SCHED | - RTE_EVENT_DEV_CAP_IMPLICIT_RELEASE_DISABLE | RTE_EVENT_DEV_CAP_QUEUE_ALL_TYPES | + RTE_EVENT_DEV_CAP_BURST_MODE | + RTE_EVENT_DEV_CAP_IMPLICIT_RELEASE_DISABLE | + RTE_EVENT_DEV_CAP_RUNTIME_PORT_LINK | + RTE_EVENT_DEV_CAP_MULTIPLE_QUEUE_PORT | RTE_EVENT_DEV_CAP_MAINTENANCE_FREE), }; -- 2.34.3 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-06-24 15:51:09.670102397 +0100 +++ 0027-event-dlb2-fix-advertized-capabilities.patch 2022-06-24 15:51:08.896984149 +0100 @@ -1 +1 @@ -From d39e23f26e1ef27fa3402da321f98b307d8c9419 Mon Sep 17 00:00:00 2001 +From 19591ad643beff1329bed61d4556521586248123 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit d39e23f26e1ef27fa3402da321f98b307d8c9419 ] + @@ -29 +30,0 @@ -Cc: stable@dpdk.org @@ -55 +56 @@ -index 3641ed2942..bc4e705e0b 100644 +index 7789dd74e0..543f793ed1 100644