From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v3 2/3] pmd: Modified dev_info structure to include default RX/TX configuration Date: Fri, 10 Oct 2014 13:14:02 +0200 Message-ID: <1430683.lO0q5i9e6O@xps13> References: <1412150458-26213-1-git-send-email-pablo.de.lara.guarch@intel.com> <1412156945-6549-1-git-send-email-pablo.de.lara.guarch@intel.com> <1412156945-6549-3-git-send-email-pablo.de.lara.guarch@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev-VfR2kkLFssw@public.gmane.org To: Pablo de Lara Return-path: In-Reply-To: <1412156945-6549-3-git-send-email-pablo.de.lara.guarch-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Pablo, I have some minor nits on this patchset. If you agree, I can fix them before applying the patchset. 2014-10-01 10:49, Pablo de Lara: > +/** > + * Default values for port configuration > + */ > +#define IGB_DEFAULT_RX_FREE_THRESH 32 > +#define IGB_DEFAULT_RX_PTHRESH 8 > +#define IGB_DEFAULT_RX_HTHRESH 8 > +#define IGB_DEFAULT_RX_WTHRESH 0 > + > +#define IGB_DEFAULT_TX_PTHRESH 32 > +#define IGB_DEFAULT_TX_HTHRESH 0 > +#define IGB_DEFAULT_TX_WTHRESH 0 Comments in .c files are not for doxygen. So /** should be replaced by /* > static int eth_igb_get_5tuple_filter(struct rte_eth_dev *dev, > uint16_t index, > struct rte_5tuple_filter *filter, uint16_t *rx_queue); > - > /* > * Define VF Stats MACRO for Non "cleared on read" register > */ This blank line shouldn't be removed. Probably a typo? -- Thomas