From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 72C02322C for ; Fri, 30 Nov 2018 00:12:50 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from yskoh@mellanox.com) with ESMTPS (AES256-SHA encrypted); 30 Nov 2018 01:18:40 +0200 Received: from scfae-sc-2.mti.labs.mlnx (scfae-sc-2.mti.labs.mlnx [10.101.0.96]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id wATNCW78032075; Fri, 30 Nov 2018 01:12:45 +0200 From: Yongseok Koh To: Rami Rosen Cc: Zhiyong Yang , Maxime Coquelin , dpdk stable Date: Thu, 29 Nov 2018 15:10:02 -0800 Message-Id: <20181129231202.30436-8-yskoh@mellanox.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20181129231202.30436-1-yskoh@mellanox.com> References: <20181129231202.30436-1-yskoh@mellanox.com> Subject: [dpdk-stable] patch 'doc: fix wrong usage of bind command' has been queued to LTS release 17.11.5 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: Thu, 29 Nov 2018 23:12:50 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.5 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 12/01/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. Yongseok --- >>From fef2270885afff6ad0e4e7e4b1699c87c1b9f23a 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 5735adbb1..99e1a2d86 100644 --- a/doc/guides/sample_app_ug/vhost.rst +++ b/doc/guides/sample_app_ug/vhost.rst @@ -107,7 +107,7 @@ could be done by: .. code-block:: console 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.11.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-29 15:01:45.657772825 -0800 +++ 0008-doc-fix-wrong-usage-of-bind-command.patch 2018-11-29 15:01:44.973963000 -0800 @@ -1,15 +1,16 @@ -From b733c60f68f12e064359b27e630305c541a3fbdf Mon Sep 17 00:00:00 2001 +From fef2270885afff6ad0e4e7e4b1699c87c1b9f23a 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 @@ -19,10 +20,10 @@ 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 +index 5735adbb1..99e1a2d86 100644 --- a/doc/guides/sample_app_ug/vhost.rst +++ b/doc/guides/sample_app_ug/vhost.rst -@@ -78,7 +78,7 @@ could be done by: +@@ -107,7 +107,7 @@ could be done by: .. code-block:: console modprobe uio_pci_generic