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 7394E46468 for ; Mon, 24 Mar 2025 17:18:47 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6785D40BA5; Mon, 24 Mar 2025 17:18:47 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id D03BD40A7F for ; Mon, 24 Mar 2025 17:18:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1742833125; 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=bu7d/ot+pGhJKuC/O5C+c2AvkuHoyuIJnSs0xCEiazs=; b=bTMFOurbs401pcyYy5+O/zu7j4gZiXo7AN3qlMesUzhhMUaelStXnL8HpRl7jmm01W9x03 wS5Vxks5NKLx20ISsB78qMJFoYMiOvRj8Z6tnkmTmn2XdeWMMmtTkSFKrs73kcvzOEOnr5 Pf3RZfs7CwKLotfNRHp7r4kiSuJcZ4c= Received: from mx-prod-mc-06.mail-002.prod.us-west-2.aws.redhat.com (ec2-35-165-154-97.us-west-2.compute.amazonaws.com [35.165.154.97]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-355-N--QpTiIPPuE_NYLRcipig-1; Mon, 24 Mar 2025 12:18:42 -0400 X-MC-Unique: N--QpTiIPPuE_NYLRcipig-1 X-Mimecast-MFC-AGG-ID: N--QpTiIPPuE_NYLRcipig_1742833121 Received: from mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mx-prod-mc-06.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 9D88E180025B; Mon, 24 Mar 2025 16:18:40 +0000 (UTC) Received: from rh.redhat.com (unknown [10.44.32.16]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 43DDD30001A1; Mon, 24 Mar 2025 16:18:37 +0000 (UTC) From: Kevin Traynor To: Luca Vizzarro Cc: Paul Szczepanek , Dean Marx , dpdk stable Subject: patch 'dts: fix smoke tests docstring' has been queued to stable release 24.11.2 Date: Mon, 24 Mar 2025 16:16:33 +0000 Message-ID: <20250324161731.63950-26-ktraynor@redhat.com> In-Reply-To: <20250324161731.63950-1-ktraynor@redhat.com> References: <20250324161731.63950-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.4 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: FB8AbPDTg4CEkNIZcnwJsm7dm6898qXcQzTdwb0tw-w_1742833121 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 24.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 03/28/25. 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/cae454d4fc50ebe9f452cb39bfd1c9b14183239b Thanks. Kevin --- >From cae454d4fc50ebe9f452cb39bfd1c9b14183239b Mon Sep 17 00:00:00 2001 From: Luca Vizzarro Date: Wed, 6 Nov 2024 16:12:06 +0000 Subject: [PATCH] dts: fix smoke tests docstring [ upstream commit 478c735c5160af21b375466e76c8f4fad06b7b32 ] Sphinx autodoc complains of is_blocking being duplicated. This is the case as the parent already holds a docstring for this attribute. Remove the duplication. Fixes: 6ef07151aac4 ("dts: update docstrings") Signed-off-by: Luca Vizzarro Reviewed-by: Paul Szczepanek Reviewed-by: Dean Marx --- dts/tests/TestSuite_smoke_tests.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/dts/tests/TestSuite_smoke_tests.py b/dts/tests/TestSuite_smoke_tests.py index ab5ad44850..6085e3dbc9 100644 --- a/dts/tests/TestSuite_smoke_tests.py +++ b/dts/tests/TestSuite_smoke_tests.py @@ -31,6 +31,4 @@ class TestSmokeTests(TestSuite): Attributes: - is_blocking: This test suite will block the execution of all other test suites - in the test run after it. nics_in_node: The NICs present on the SUT node. """ -- 2.48.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2025-03-24 16:15:15.766086448 +0000 +++ 0026-dts-fix-smoke-tests-docstring.patch 2025-03-24 16:15:14.858316096 +0000 @@ -1 +1 @@ -From 478c735c5160af21b375466e76c8f4fad06b7b32 Mon Sep 17 00:00:00 2001 +From cae454d4fc50ebe9f452cb39bfd1c9b14183239b Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 478c735c5160af21b375466e76c8f4fad06b7b32 ] + @@ -20 +22 @@ -index a8ea07595f..0474b82bd2 100644 +index ab5ad44850..6085e3dbc9 100644