From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id DB143A034F; Mon, 22 Mar 2021 12:19:55 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7A42340040; Mon, 22 Mar 2021 12:19:55 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 54F024003D for ; Mon, 22 Mar 2021 12:19:54 +0100 (CET) IronPort-SDR: tsfwiR+06ZZXIrm1Sf2o1e9BZmODrY8UJX0De0XHKUrgno/uGFVnHbflznvqiYqI61D4gDja0g DA8be5Lykt1A== X-IronPort-AV: E=McAfee;i="6000,8403,9930"; a="190278409" X-IronPort-AV: E=Sophos;i="5.81,268,1610438400"; d="scan'208";a="190278409" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Mar 2021 04:19:52 -0700 IronPort-SDR: j8Z2lrXnkebTISnmshOp9KHePRNPKYN8jT8kGt7pe1Wu/iEbN5CXBwHaiaxj20CoRVrlcacUEr IY7uNSHAXcrg== X-IronPort-AV: E=Sophos;i="5.81,268,1610438400"; d="scan'208";a="451701420" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.252.14.44]) ([10.252.14.44]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Mar 2021 04:19:51 -0700 To: "Min Hu (Connor)" , dev@dpdk.org, Xiaoyun Li Cc: ajit.khaparde@broadcom.com References: <1614906276-34293-1-git-send-email-oulijun@huawei.com> <1616396846-19806-1-git-send-email-humin29@huawei.com> From: Ferruh Yigit X-User: ferruhy Message-ID: Date: Mon, 22 Mar 2021 11:19:47 +0000 MIME-Version: 1.0 In-Reply-To: <1616396846-19806-1-git-send-email-humin29@huawei.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v4] app/testpmd: support multi-process X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 3/22/2021 7:07 AM, Min Hu (Connor) wrote: > From: Lijun Ou > > This patch adds multi-process support for testpmd. > The test cmd example as follows: > the primary cmd: > ./dpdk-testpmd -a xxx --proc-type=auto -l 0-1 -- -i \ > --rxq=4 --txq=4 --num-procs=2 --proc-id=0 > > the secondary cmd: > ./dpdk-testpmd -a xxx --proc-type=auto -l 2-3 -- -i \ > --rxq=4 --txq=4 --num-procs=2 --proc-id=1 > > Signed-off-by: Min Hu (Connor) > Signed-off-by: Lijun Ou > --- > v4: > * Fixed minimum vlaue of Rxq or Txq in doc. > > v3: > * Fixed compiling error using gcc10.0. > > v2: > * Added document for this patch. +Xiaoyun, testpmd maintainer.