From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 41A3E5681 for ; Thu, 15 Mar 2018 04:59:24 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Mar 2018 20:59:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,308,1517904000"; d="scan'208";a="34020407" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by FMSMGA003.fm.intel.com with ESMTP; 14 Mar 2018 20:59:23 -0700 Received: from fmsmsx153.amr.corp.intel.com (10.18.125.6) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 14 Mar 2018 20:59:23 -0700 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by FMSMSX153.amr.corp.intel.com (10.18.125.6) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 14 Mar 2018 20:59:22 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.235]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.129]) with mapi id 14.03.0319.002; Thu, 15 Mar 2018 11:59:21 +0800 From: "Zhang, Qi Z" To: "Ananyev, Konstantin" , "thomas@monjalon.net" CC: "dev@dpdk.org" , "Xing, Beilei" , "Wu, Jingjing" , "Lu, Wenzhuo" Thread-Topic: [dpdk-dev] [PATCH v2 3/4] app/testpmd: add command for queue setup Thread-Index: AQHTsdzQM1YptvqmMUy2T7MVUgY2laPPjWiAgAEyrYA= Date: Thu, 15 Mar 2018 03:59:20 +0000 Message-ID: <039ED4275CED7440929022BC67E706115316DF78@SHSMSX103.ccr.corp.intel.com> References: <20180212045314.171616-1-qi.z.zhang@intel.com> <20180302041306.90324-1-qi.z.zhang@intel.com> <20180302041306.90324-4-qi.z.zhang@intel.com> <2601191342CEEE43887BDE71AB9772589E28FD1A@irsmsx105.ger.corp.intel.com> In-Reply-To: <2601191342CEEE43887BDE71AB9772589E28FD1A@irsmsx105.ger.corp.intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 3/4] app/testpmd: add command for queue setup 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, 15 Mar 2018 03:59:24 -0000 > -----Original Message----- > From: Ananyev, Konstantin > Sent: Thursday, March 15, 2018 1:41 AM > To: Zhang, Qi Z ; thomas@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo ; Zhang, Qi Z > > Subject: RE: [dpdk-dev] [PATCH v2 3/4] app/testpmd: add command for > queue setup >=20 > > +} > > + > > +cmdline_parse_inst_t cmd_queue_setup =3D { > > + .f =3D cmd_queue_setup_parsed, > > + .data =3D NULL, > > + .help_str =3D "queue setup "= , >=20 > It probably would be good to add an ability to specify rx/tx queue offloa= ds by > this command. > Konstantin OK. >=20 >=20 > > + .tokens =3D { > > + (void *)&cmd_queue_setup_queue, > > + (void *)&cmd_queue_setup_setup, > > + (void *)&cmd_queue_setup_rxtx, > > + (void *)&cmd_queue_setup_port_id, > > + (void *)&cmd_queue_setup_queue_idx, > > + (void *)&cmd_queue_setup_ring_size, > > + NULL, > > + }, > > +}; > > +