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 2AF40A0C40; Wed, 28 Apr 2021 14:11:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CE55040697; Wed, 28 Apr 2021 14:11:01 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id C0DC140147 for ; Wed, 28 Apr 2021 14:10:59 +0200 (CEST) IronPort-SDR: YZ01TLenAIo2bXpcf/p3RUpUv7PmnauMl1XahvWhNrctB7JYF/xhyTDh3kEheplFwIV06PF04I BMdayWtX+KRQ== X-IronPort-AV: E=McAfee;i="6200,9189,9967"; a="184208890" X-IronPort-AV: E=Sophos;i="5.82,258,1613462400"; d="scan'208,217";a="184208890" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Apr 2021 05:10:58 -0700 IronPort-SDR: rdEoyCBvYJnPWdMqkrUFSAOOEyRt7KZp4y6adQZTmzy7gkAtM8Aj7F+Hd56uMqKzX61JU5nEPL Uqy82p4G/5tA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,258,1613462400"; d="scan'208,217";a="458158507" Received: from irsmsx603.ger.corp.intel.com ([163.33.146.9]) by fmsmga002.fm.intel.com with ESMTP; 28 Apr 2021 05:10:57 -0700 Received: from bgsmsx603.gar.corp.intel.com (10.109.78.82) by irsmsx603.ger.corp.intel.com (163.33.146.9) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2106.2; Wed, 28 Apr 2021 13:10:55 +0100 Received: from bgsmsx603.gar.corp.intel.com ([10.109.78.82]) by BGSMSX603.gar.corp.intel.com ([10.109.78.82]) with mapi id 15.01.2106.013; Wed, 28 Apr 2021 17:40:54 +0530 From: "Singh, Aman Deep" To: "Min Hu (Connor" , "'dev@dpdk.org'" CC: "Mcnamara, John" , "Kovacevic, Marko" , "Burakov, Anatoly" , "andrew.rybchenko@oktetlabs.ru" , "thomas@monjalon.net" , "Li, Xiaoyun" , "Yigit, Ferruh" Thread-Topic: [dpdk-dev] [PATCH v13] app/testpmd: support multi-process Thread-Index: Adc8J4cBpXZZm5hEToqnlTAdw1VwLw== Date: Wed, 28 Apr 2021 12:10:54 +0000 Message-ID: <7d3abc78770645a78fd2d20061b2d686@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.5.1.3 dlp-product: dlpe-windows x-originating-ip: [10.223.10.1] MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: Re: [dpdk-dev] [PATCH v13] 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" This patch adds multi-process support for testpmd. The test cmd example as follows: the primary cmd: ./dpdk-testpmd -a xxx --proc-type=3Dauto -l 0-1 -- -i \ --rxq=3D4 --txq=3D4 --num-procs=3D2 --proc-id=3D0 the secondary cmd: ./dpdk-testpmd -a xxx --proc-type=3Dauto -l 2-3 -- -i \ --rxq=3D4 --txq=3D4 --num-procs=3D2 --proc-id=3D1 Signed-off-by: Min Hu (Connor) > Signed-off-by: Lijun Ou > Acked-by: Xiaoyun Li > Acked-by: Ajit Khaparde > Reviewed-by: Ferruh Yigit > Acked-by: Aman Deep Singh > Tested-by: Aman Deep Singh >