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 D9D61A0555 for ; Thu, 9 Jun 2022 13:37:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D5DEF4280B; Thu, 9 Jun 2022 13:37:56 +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 C25BF42802 for ; Thu, 9 Jun 2022 13:37:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1654774675; 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=HvP9D90uBn0D8bXNGt4bXHWATFWoBS67WkANcAbb7ew=; b=TBzkTuDafNvQCp17IBba6mlaTjlsJCz/hn7oEw6F6wuCjA/qiJzd6X1M1HhbuEvaljcb6Q da1yP68eU38G7H9UMsmd0PJQ7OzfRjywCQp875WAzunCRIpZ+3xUcVGwDWzsv2oF9UHmln KEtr+643BvtOTmu3WXiWY9vP5/Jl75w= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-122-atjmXNXZMDGZWXfdkMcXhA-1; Thu, 09 Jun 2022 07:37:52 -0400 X-MC-Unique: atjmXNXZMDGZWXfdkMcXhA-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 26A3238041DA; Thu, 9 Jun 2022 11:37:52 +0000 (UTC) Received: from rh.redhat.com (unknown [10.39.195.82]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6B5EE18EA4; Thu, 9 Jun 2022 11:37:51 +0000 (UTC) From: Kevin Traynor To: Dmitry Kozlyuk Cc: Tyler Retzlaff , dpdk stable Subject: patch 'ethdev: prohibit polling stopped queue' has been queued to stable release 21.11.2 Date: Thu, 9 Jun 2022 12:36:17 +0100 Message-Id: <20220609113701.386938-30-ktraynor@redhat.com> In-Reply-To: <20220609113701.386938-1-ktraynor@redhat.com> References: <20220609113701.386938-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/13/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/79dd4206a76ad622f3ea78700df40fbe6bd0d979 Thanks. Kevin --- >From 79dd4206a76ad622f3ea78700df40fbe6bd0d979 Mon Sep 17 00:00:00 2001 From: Dmitry Kozlyuk Date: Mon, 11 Apr 2022 00:35:50 +0300 Subject: [PATCH] ethdev: prohibit polling stopped queue [ upstream commit b77d3318d6a3ca266751031ff04520b7ad485529 ] Whether it is allowed to call Rx/Tx functions for a stopped queue was undocumented. Some PMDs make this behavior a no-op either by explicitly checking the queue state or by the way how their routines are implemented or HW works. No-op behavior may be convenient for application developers. But it also means that pollers of stopped queues would go all the way down to PMD Rx/Tx routines, wasting cycles. Some PMDs would do a check for the queue state on data path, even though it may never be needed for a particular application. Also, use cases for stopping queues or starting them deferred do not logically require polling stopped queues. Use case 1: a secondary that was polling the queue has crashed, the primary is doing a recovery to free all mbufs. By definition the queue to be restarted is not polled. Use case 2: deferred queue start or queue reconfiguration. The polling thread must be synchronized anyway, because queue start and stop are non-atomic. Prohibit calling Rx/Tx functions on stopped queues. Fixes: 0748be2cf9a2 ("ethdev: queue start and stop") Signed-off-by: Dmitry Kozlyuk Acked-by: Tyler Retzlaff --- lib/ethdev/rte_ethdev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h index 1d11a002d5..0be04c5809 100644 --- a/lib/ethdev/rte_ethdev.h +++ b/lib/ethdev/rte_ethdev.h @@ -75,5 +75,5 @@ * device and then do the reconfiguration before calling rte_eth_dev_start() * again. The transmit and receive functions should not be invoked when the - * device is stopped. + * device or the queue is stopped. * * Please note that some configuration is not stored between calls to -- 2.34.3 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-06-09 12:34:30.476383256 +0100 +++ 0030-ethdev-prohibit-polling-stopped-queue.patch 2022-06-09 12:34:29.703980569 +0100 @@ -1 +1 @@ -From b77d3318d6a3ca266751031ff04520b7ad485529 Mon Sep 17 00:00:00 2001 +From 79dd4206a76ad622f3ea78700df40fbe6bd0d979 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit b77d3318d6a3ca266751031ff04520b7ad485529 ] + @@ -30 +31,0 @@ -Cc: stable@dpdk.org @@ -39 +40 @@ -index 04225bba4d..02df65d923 100644 +index 1d11a002d5..0be04c5809 100644