From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ua0-f193.google.com (mail-ua0-f193.google.com [209.85.217.193]) by dpdk.org (Postfix) with ESMTP id B0513FAFD for ; Fri, 10 Feb 2017 00:00:56 +0100 (CET) Received: by mail-ua0-f193.google.com with SMTP id f2so1600085uaf.3 for ; Thu, 09 Feb 2017 15:00:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nfware-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=qVThW4xnwa+vZr7fDck6relm6hi8uPTZTlpLcwypW+A=; b=xjuHFmCyE6nI6A9MN3MZQ7G1gNF7peA3wyECxTUpYKzblRMmAedIk5sIOXqnUfKRor O15BmwdMzOoYEHn9t6EyC3RXyelaMk2ikjuPK6QyWsXAVsVhLeabh1Ri2ckx648chChx ZkH1A0JL7p4eduFbO1C3OEb07StzXveQvGh3jP+7q6QOqOUZn181F4rXPhfGTpLCXgPP EbD3VNky3D/7/flHOZBIAIx38KkGlgjgSl5VrfVhj1s+BB+nhDLpnpzs7GYVhKC4ZUt8 OA62RIEb0QZVvRs6ZHkWdZ9N90gt6T0QYA4nR3c5vYhbVjabxIeUpOvqqls35SQIFJWD LJJA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=qVThW4xnwa+vZr7fDck6relm6hi8uPTZTlpLcwypW+A=; b=hyiyJWUGOYD3zbxJI8fy3/ZC8T0j6ZQwzOK6z1NkkODW32Y0/CsxVRqdRZ946V82Sd FSIr7qV28l3cVpGXtsLCTi5YoGKkZEUlVXdEGu23DuzQq2v5uZ193m29dJaEZuDXD4tK XKJgoZsgsd4DKzDdI0QV3MiRH8E+sFN9XvcEgJztNwfim9ZZckp/gMbHjQ4eupmzaWH7 lG/zSkBIad4Ilw4lftAmGoujtyUo5/suBL0XN1Bj++2hwVLm0VXAwBNR7JerFEyAcuKH GwBRv6szhbygslUhliRj9lElMZP9tRkinnJxxC0EEoB/FWhTOtyy/NLKLVPagt0ZKsXW 0SoQ== X-Gm-Message-State: AMke39m2MKbvN+arcEnLxGd5ZIhjNH+LwIsDJjjroTO5U0wQM8e8+Lqrj8lSRNXVPbUuo1e/CfZxqkAibeC2/Q== X-Received: by 10.176.2.184 with SMTP id 53mr3090057uah.117.1486681255914; Thu, 09 Feb 2017 15:00:55 -0800 (PST) MIME-Version: 1.0 Received: by 10.176.87.73 with HTTP; Thu, 9 Feb 2017 15:00:55 -0800 (PST) X-Originating-IP: [77.105.154.174] In-Reply-To: <20170209181450.58466-5-keith.wiles@intel.com> References: <20170209181450.58466-1-keith.wiles@intel.com> <20170209181450.58466-5-keith.wiles@intel.com> From: Igor Ryzhov Date: Fri, 10 Feb 2017 02:00:55 +0300 Message-ID: To: Keith Wiles Cc: "dev@dpdk.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH 04/11] doc/howto: use corelist instead of coremask 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: Thu, 09 Feb 2017 23:00:57 -0000 Hello Keith, comments inline below. On Thu, Feb 9, 2017 at 9:14 PM, Keith Wiles wrote: > Signed-off-by: Keith Wiles > --- > doc/guides/howto/flow_bifurcation.rst | 2 +- > doc/guides/howto/lm_bond_virtio_sriov.rst | 6 +++--- > doc/guides/howto/lm_virtio_vhost_user.rst | 6 +++--- > 3 files changed, 7 insertions(+), 7 deletions(-) > > diff --git a/doc/guides/howto/flow_bifurcation.rst > b/doc/guides/howto/flow_bifurcation.rst > index 0d7226a..ad544ce 100644 > --- a/doc/guides/howto/flow_bifurcation.rst > +++ b/doc/guides/howto/flow_bifurcation.rst > @@ -126,7 +126,7 @@ The typical procedure to achieve this is as follows: > > .. code-block:: console > > - testpmd -c 0xff -n 4 -- -i -w 01:10.0 -w 01:10.1 --forward-mode=mac > + testpmd -l 0-7 -n 4 -- -i -w 01:10.0 -w 01:10.1 --forward-mode=mac > > In this example, traffic matching the rules will go through the VF by > matching > the filter rule. All other traffic, not matching the rules, will go > through > diff --git a/doc/guides/howto/lm_bond_virtio_sriov.rst > b/doc/guides/howto/lm_bond_virtio_sriov.rst > index 169b64e..bdf2749 100644 > --- a/doc/guides/howto/lm_bond_virtio_sriov.rst > +++ b/doc/guides/howto/lm_bond_virtio_sriov.rst > @@ -442,7 +442,7 @@ Setup Virtual Machine on host_server_1 > # Memory > MEM=1536 > > - taskset -c 1-5 $KVM_PATH \ > + taskset -l 1-5 $KVM_PATH \ > -c is legal option for taskset utility, not -l. > -enable-kvm \ > -m $MEM \ > -smp $VCPUS_NR \ > @@ -545,7 +545,7 @@ Setup Virtual Machine on host_server_2 > # Memory > MEM=1536 > > - taskset -c 1-5 $KVM_PATH \ > + taskset -l 1-5 $KVM_PATH \ > Same as previous. > -enable-kvm \ > -m $MEM \ > -smp $VCPUS_NR \ > @@ -641,7 +641,7 @@ Run testpmd in the Virtual Machine. > # use for bonding of virtio and vf tests in VM > > /root/dpdk/x86_64-default-linuxapp-gcc/app/testpmd \ > - -c f -n 4 --socket-mem 350 -- --i --port-topology=chained > + -l 0-3 -n 4 --socket-mem 350 -- --i --port-topology=chained > > .. _lm_bond_virtio_sriov_switch_conf: > > diff --git a/doc/guides/howto/lm_virtio_vhost_user.rst > b/doc/guides/howto/lm_virtio_vhost_user.rst > index 0a0fcfc..7e440ff 100644 > --- a/doc/guides/howto/lm_virtio_vhost_user.rst > +++ b/doc/guides/howto/lm_virtio_vhost_user.rst > @@ -326,7 +326,7 @@ vm_virtio_vhost_user.sh > # Socket Path > SOCKET_PATH="/root/dpdk/host_scripts/usvhost" > > - taskset -c 2-7 $KVM_PATH \ > + taskset -l 2-7 $KVM_PATH \ > Same. > -enable-kvm \ > -m $MEM \ > -smp $VCPUS_NR \ > @@ -402,7 +402,7 @@ vm_virtio_vhost_user_migrate.sh > # Socket Path > SOCKET_PATH="/root/dpdk/host_scripts/usvhost" > > - taskset -c 2-7 $KVM_PATH \ > + taskset -l 2-7 $KVM_PATH \ > Same. > -enable-kvm \ > -m $MEM \ > -smp $VCPUS_NR \ > @@ -466,4 +466,4 @@ run_testpmd_in_vm.sh > # test system has 8 cpus (0-7), use cpus 2-7 for VM > > /root/dpdk/x86_64-default-linuxapp-gcc/app/testpmd \ > - -c 3f -n 4 --socket-mem 350 -- --burst=64 --i --disable-hw-vlan-filter > + -l 0-5 -n 4 --socket-mem 350 -- --burst=64 --i --disable-hw-vlan-filter > -- > 2.8.0.GIT > > Best regards, Igor