From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by dpdk.org (Postfix) with ESMTP id 1F44311A4 for ; Mon, 10 Sep 2018 15:11:09 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6178E406E8C0; Mon, 10 Sep 2018 13:11:08 +0000 (UTC) Received: from [10.36.112.46] (ovpn-112-46.ams2.redhat.com [10.36.112.46]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 619992027EB7; Mon, 10 Sep 2018 13:11:07 +0000 (UTC) To: Rami Rosen , dev@dpdk.org Cc: john.mcnamara@intel.com References: <20180824074302.18606-1-ramirose@gmail.com> From: Maxime Coquelin Message-ID: Date: Mon, 10 Sep 2018 15:11:05 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20180824074302.18606-1-ramirose@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.78 on 10.11.54.4 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.7]); Mon, 10 Sep 2018 13:11:08 +0000 (UTC) X-Greylist: inspected by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.7]); Mon, 10 Sep 2018 13:11:08 +0000 (UTC) for IP:'10.11.54.4' DOMAIN:'int-mx04.intmail.prod.int.rdu2.redhat.com' HELO:'smtp.corp.redhat.com' FROM:'maxime.coquelin@redhat.com' RCPT:'' Subject: Re: [dpdk-dev] [PATCH] doc: fix wrong usage of bind command X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Sep 2018 13:11:09 -0000 On 08/24/2018 09:43 AM, Rami Rosen wrote: > 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. > > Signed-off-by: Rami Rosen > --- > 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 > @@ -78,7 +78,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. > > Reviewed-by: Maxime Coquelin And applied to dpdk-next-virtio/master Thanks, Maxime