From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by dpdk.org (Postfix) with ESMTP id 431541B109 for ; Thu, 27 Sep 2018 10:44:17 +0200 (CEST) Received: by mail-wm1-f66.google.com with SMTP id 206-v6so4988988wmb.5 for ; Thu, 27 Sep 2018 01:44:17 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=W3C/n3hmAMnmgNGVXToORLFwPTPSub4hDUuF3ipQTEE=; b=P5FS1BCrqedWi/MCdm+uHpEyuEO+vxrHuSjyep2liU4PzWxdf5i6TlqPhq8yMWqCwN gQ6Px2lUPQf9pLRnnWYrNOgp5pf1ZNVF6HYqNIHZJHIyBcQoRTe90VRW1KG0PZtfDVvt klfwccFPtqPAbCVzZQGpkpXLg3P3Z8TNiH7+qbAPdnA1ZFgr9IstzZsKke99P9mDQVeH tqG2tkCYVLcRZjinPUxXlqQgARJ5BkX6jzRXksegA596QjYi+W7cn32szUXpBgK66R/o J7n5/sKLkJJdHUPxBqxqmVTjEXRr2OikJLtjkacUPcihVJV+sDd7CP1uwBy+YgQqdTz+ avHg== X-Gm-Message-State: ABuFfohGW/OAzsnFkBTpM5x53CtEVPXUYGuWmrk2ZjRd20dHg3TQp/m/ +wu8hcR0Q2avrA4OVVb1aoQ= X-Google-Smtp-Source: ACcGV63Kye2Q+t4dnTXZwEMSR+cvn62wb9RB+QkwCt7KoWbGH2OQASJfYIvQVab09gjpibk6QAaGRg== X-Received: by 2002:a1c:8f50:: with SMTP id r77-v6mr7286209wmd.44.1538037856842; Thu, 27 Sep 2018 01:44:16 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id h2-v6sm537201wrs.34.2018.09.27.01.44.15 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 27 Sep 2018 01:44:15 -0700 (PDT) From: Luca Boccassi To: Rami Rosen Cc: Zhiyong Yang , Maxime Coquelin , dpdk stable Date: Thu, 27 Sep 2018 09:43:58 +0100 Message-Id: <20180927084403.19646-3-bluca@debian.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180927084403.19646-1-bluca@debian.org> References: <20180927084403.19646-1-bluca@debian.org> Subject: [dpdk-stable] patch 'doc: fix wrong usage of bind command' has been queued to LTS release 16.11.9 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, 27 Sep 2018 08:44:17 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.9 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 09/27/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. Luca Boccassi --- >>From 53ac4208df75a12332b25111140c3bd3f63044cc 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 1f6d0d96a0..c9a605fc48 100644 --- a/doc/guides/sample_app_ug/vhost.rst +++ b/doc/guides/sample_app_ug/vhost.rst @@ -115,7 +115,7 @@ could be done by: .. code-block:: console modprobe uio_pci_generic - $RTE_SDK/tools/dpdk-devbind.py -b=uio_pci_generic 0000:00:04.0 + $RTE_SDK/tools/dpdk-devbind.py -b uio_pci_generic 0000:00:04.0 Then start testpmd for packet forwarding testing. -- 2.18.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-09-25 13:26:56.849323403 +0100 +++ 0003-doc-fix-wrong-usage-of-bind-command.patch 2018-09-25 13:26:56.771424700 +0100 @@ -1,15 +1,16 @@ -From b733c60f68f12e064359b27e630305c541a3fbdf Mon Sep 17 00:00:00 2001 +From 53ac4208df75a12332b25111140c3bd3f63044cc 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,15 +20,15 @@ 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 fd42cb3f77..df4d6f9a0b 100644 +index 1f6d0d96a0..c9a605fc48 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: +@@ -115,7 +115,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 +- $RTE_SDK/tools/dpdk-devbind.py -b=uio_pci_generic 0000:00:04.0 ++ $RTE_SDK/tools/dpdk-devbind.py -b uio_pci_generic 0000:00:04.0 Then start testpmd for packet forwarding testing.