From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 0973E29C6 for ; Tue, 20 Nov 2018 20:15:00 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6B134308AA12; Tue, 20 Nov 2018 19:14:59 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id 24DF160141; Tue, 20 Nov 2018 19:14:53 +0000 (UTC) From: Kevin Traynor To: Rami Rosen Cc: Zhiyong Yang , Maxime Coquelin , dpdk stable Date: Tue, 20 Nov 2018 19:12:15 +0000 Message-Id: <20181120191252.30277-25-ktraynor@redhat.com> In-Reply-To: <20181120191252.30277-1-ktraynor@redhat.com> References: <20181120191252.30277-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.41]); Tue, 20 Nov 2018 19:14:59 +0000 (UTC) Subject: [dpdk-stable] patch 'doc: fix wrong usage of bind command' has been queued to stable release 18.08.1 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: , X-List-Received-Date: Tue, 20 Nov 2018 19:15:00 -0000 Hi, FYI, your patch has been queued to stable release 18.08.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/23/18. 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. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Kevin Traynor --- >>From 9316dae36fe574ac58dcffd0e636ce952297679c Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Fri, 24 Aug 2018 10:43:02 +0300 Subject: [PATCH] doc: fix wrong usage of bind command [ upstream commit b733c60f68f12e064359b27e630305c541a3fbdf ] This patch fixes wrong usage of bind command in vhost.rst. Using "dpdk-devbind.py -b=uio_pci_generic 0000:00:04.0" gives an error of "unbind failed". It should be "-b uio_pci_generic" so it will work correctly. Fixes: a971c509a523 ("doc: update vhost sample guide") Signed-off-by: Rami Rosen Acked-by: Zhiyong Yang Reviewed-by: Maxime Coquelin --- doc/guides/sample_app_ug/vhost.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/sample_app_ug/vhost.rst b/doc/guides/sample_app_ug/vhost.rst index fd42cb3f7..df4d6f9a0 100644 --- a/doc/guides/sample_app_ug/vhost.rst +++ b/doc/guides/sample_app_ug/vhost.rst @@ -79,5 +79,5 @@ could be done by: modprobe uio_pci_generic - $RTE_SDK/usertools/dpdk-devbind.py -b=uio_pci_generic 0000:00:04.0 + $RTE_SDK/usertools/dpdk-devbind.py -b uio_pci_generic 0000:00:04.0 Then start testpmd for packet forwarding testing. -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-20 17:53:08.074644396 +0000 +++ 0025-doc-fix-wrong-usage-of-bind-command.patch 2018-11-20 17:53:07.000000000 +0000 @@ -1,15 +1,16 @@ -From b733c60f68f12e064359b27e630305c541a3fbdf Mon Sep 17 00:00:00 2001 +From 9316dae36fe574ac58dcffd0e636ce952297679c Mon Sep 17 00:00:00 2001 From: Rami Rosen Date: Fri, 24 Aug 2018 10:43:02 +0300 Subject: [PATCH] doc: fix wrong usage of bind command +[ upstream commit b733c60f68f12e064359b27e630305c541a3fbdf ] + This patch fixes wrong usage of bind command in vhost.rst. Using "dpdk-devbind.py -b=uio_pci_generic 0000:00:04.0" gives an error of "unbind failed". It should be "-b uio_pci_generic" so it will work correctly. Fixes: a971c509a523 ("doc: update vhost sample guide") -Cc: stable@dpdk.org Signed-off-by: Rami Rosen Acked-by: Zhiyong Yang