From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v2 1/4] ethdev: add support for PMD-tuned Tx/Rx parameters Date: Sat, 31 Mar 2018 02:46:10 +0200 Message-ID: <2550790.ACiRyHPk5K@xps> References: <20180321142749.27520-1-remy.horton@intel.com> <20180321142749.27520-2-remy.horton@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, John McNamara , Wenzhuo Lu , Jingjing Wu , Qi Zhang , Beilei Xing , Shreyansh Jain To: Remy Horton Return-path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 5C4835B3E for ; Sat, 31 Mar 2018 02:46:26 +0200 (CEST) In-Reply-To: <20180321142749.27520-2-remy.horton@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 21/03/2018 15:27, Remy Horton: > +/* > + * Preferred Rx/Tx port parameters. > + */ > +struct rte_eth_dev_portconf { > + uint16_t burst_size; > + uint16_t ring_size; > + uint16_t nb_queues; > +}; Please add a doxygen comment for each field, thanks.