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 00F1B42850 for ; Thu, 30 Mar 2023 10:36:17 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ED05840685; Thu, 30 Mar 2023 10:36:16 +0200 (CEST) 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 C0AEC42B8E for ; Thu, 30 Mar 2023 10:36:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1680165375; 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=AssylBVdGGVql7bzueC40HKej36SKYglob56Uo7+k50=; b=CiZxOIMfNI1/mPdZO0ZlHJRiSQI+hg9eG+yhxZ8UIVX4ngxDM1/u5tLTebefYU+uBmRSYL Eh/AW4KlraNLEn8b06fuwo0tKp8SjeGJAs06vAGWht60kViytXZ2neHXEnq6PXadxCMa91 IX8MUxhosQUDcAqcYytREVxmMKsewa8= 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-629-O_2TP5CKPcWCZ9P0Do-O4A-1; Thu, 30 Mar 2023 04:36:12 -0400 X-MC-Unique: O_2TP5CKPcWCZ9P0Do-O4A-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 54BA688B7A1; Thu, 30 Mar 2023 08:36:12 +0000 (UTC) Received: from rh.redhat.com (unknown [10.39.192.23]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8E23D40521FD; Thu, 30 Mar 2023 08:36:11 +0000 (UTC) From: Kevin Traynor To: Harshad Narayane Cc: Kamalakannan R , Cristian Dumitrescu , dpdk stable Subject: patch 'doc: fix pipeline example path in user guide' has been queued to stable release 21.11.4 Date: Thu, 30 Mar 2023 09:36:00 +0100 Message-Id: <20230330083600.473876-8-ktraynor@redhat.com> In-Reply-To: <20230330083600.473876-1-ktraynor@redhat.com> References: <20230330083600.473876-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 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.4 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 04/02/23. 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/1ae194289fa5b0ad0731a36ac103f7f8cccc2e65 Thanks. Kevin --- >From 1ae194289fa5b0ad0731a36ac103f7f8cccc2e65 Mon Sep 17 00:00:00 2001 From: Harshad Narayane Date: Mon, 28 Nov 2022 04:33:24 +0530 Subject: [PATCH] doc: fix pipeline example path in user guide [ upstream commit 0ab37572614c695f3087f4edaa8e0a95d1bf4a93 ] Updated the pipeline example path in the Sample Application User Guide. Fixes: 29485dd07bc3 ("doc: add pipeline example user guide") Signed-off-by: Harshad Narayane Signed-off-by: Kamalakannan R Acked-by: Cristian Dumitrescu --- doc/guides/sample_app_ug/pipeline.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/sample_app_ug/pipeline.rst b/doc/guides/sample_app_ug/pipeline.rst index 49d50136bc..7c86bf484a 100644 --- a/doc/guides/sample_app_ug/pipeline.rst +++ b/doc/guides/sample_app_ug/pipeline.rst @@ -59,5 +59,5 @@ The following is an example command to run the application configured for the VX .. code-block:: console - $ .//examples/dpdk-pipeline -c 0x3 -- -s examples/vxlan.cli + $ .//examples/dpdk-pipeline -c 0x3 -- -s examples/pipeline/examples/vxlan.cli The application should start successfully and display as follows: -- 2.39.2 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2023-03-30 09:30:45.487075298 +0100 +++ 0009-doc-fix-pipeline-example-path-in-user-guide.patch 2023-03-30 09:30:45.275229273 +0100 @@ -1 +1 @@ -From 0ab37572614c695f3087f4edaa8e0a95d1bf4a93 Mon Sep 17 00:00:00 2001 +From 1ae194289fa5b0ad0731a36ac103f7f8cccc2e65 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 0ab37572614c695f3087f4edaa8e0a95d1bf4a93 ] + @@ -9 +10,0 @@ -Cc: stable@dpdk.org