From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maxime Coquelin Subject: [PATCH] doc: pvp: fix typo in host's testpmd command line Date: Fri, 7 Apr 2017 17:06:14 +0200 Message-ID: <20170407150614.9963-1-maxime.coquelin@redhat.com> Cc: jfreiman@redhat.com, Maxime Coquelin To: dev@dpdk.org, john.mcnamara@intel.com Return-path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 7FD83374C for ; Fri, 7 Apr 2017 17:06:21 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch adds missing backslash in host's testpmd command line. Without it the command works, but a single core is used instead of four, which might create confusion. Fixes: 58a2551a160f ("doc: introduce PVP reference benchmark") Cc: John McNamara Signed-off-by: Maxime Coquelin --- doc/guides/howto/pvp_reference_benchmark.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/howto/pvp_reference_benchmark.rst b/doc/guides/howto/pvp_reference_benchmark.rst index 6d514ff..208e4c7 100644 --- a/doc/guides/howto/pvp_reference_benchmark.rst +++ b/doc/guides/howto/pvp_reference_benchmark.rst @@ -158,7 +158,7 @@ Testpmd launch $RTE_SDK/install/bin/testpmd -l 0,2,3,4,5 --socket-mem=1024 -n 4 \ --vdev 'net_vhost0,iface=/tmp/vhost-user1' \ --vdev 'net_vhost1,iface=/tmp/vhost-user2' -- \ - --portmask=f --disable-hw-vlan -i --rxq=1 --txq=1 + --portmask=f --disable-hw-vlan -i --rxq=1 --txq=1 \ --nb-cores=4 --forward-mode=io With this command, isolated CPUs 2 to 5 will be used as lcores for PMD threads. -- 2.9.3