> -----Original Message----- > From: Ferruh Yigit <ferruh.yi...@amd.com> > Sent: Thursday, March 2, 2023 5:30 PM > To: Liu, Mingxia <mingxia....@intel.com>; dev@dpdk.org; Xing, Beilei > <beilei.x...@intel.com>; Zhang, Yuying <yuying.zh...@intel.com> > Subject: Re: [PATCH v8 21/21] net/cpfl: add xstats ops > > On 3/2/2023 10:35 AM, Mingxia Liu wrote: > > Add support for these device ops: > > - dev_xstats_get > > - dev_xstats_get_names > > - dev_xstats_reset > > > > Signed-off-by: Mingxia Liu <mingxia....@intel.com> > > <...> > > > +static int cpfl_dev_xstats_get_names(__rte_unused struct rte_eth_dev > *dev, > > + struct rte_eth_xstat_name > *xstats_names, > > + __rte_unused unsigned int limit) { > > + unsigned int i; > > + > > + if (xstats_names) > > + for (i = 0; i < CPFL_NB_XSTATS; i++) { > > + snprintf(xstats_names[i].name, > > + sizeof(xstats_names[i].name), > > + "%s", rte_cpfl_stats_strings[i].name); > > + } > > > Although above is correct, can you please add {}, it is safer to do it for > multi > line blocks. [Liu, Mingxia] ok, I'll add nexr version.
- [PATCH v8 13/21] net/cpfl: support Rx offloading Mingxia Liu
- [PATCH v8 14/21] net/cpfl: support Tx offloading Mingxia Liu
- [PATCH v8 15/21] net/cpfl: add AVX512 data path for single qu... Mingxia Liu
- [PATCH v8 16/21] net/cpfl: support timestamp offload Mingxia Liu
- [PATCH v8 17/21] net/cpfl: add AVX512 data path for split que... Mingxia Liu
- [PATCH v8 18/21] net/cpfl: add HW statistics Mingxia Liu
- [PATCH v8 19/21] net/cpfl: add RSS set/get ops Mingxia Liu
- [PATCH v8 20/21] net/cpfl: support scalar scatter Rx datapath... Mingxia Liu
- [PATCH v8 21/21] net/cpfl: add xstats ops Mingxia Liu
- Re: [PATCH v8 21/21] net/cpfl: add xstats ops Ferruh Yigit
- RE: [PATCH v8 21/21] net/cpfl: add xstats ops Liu, Mingxia
- [PATCH v9 00/21] add support for cpfl PMD in DPDK Mingxia Liu
- [PATCH v9 01/21] net/cpfl: support device initialization Mingxia Liu
- Re: [PATCH v9 01/21] net/cpfl: support device initia... Ferruh Yigit
- Re: [PATCH v9 01/21] net/cpfl: support device in... Ferruh Yigit
- Re: [PATCH v9 01/21] net/cpfl: support device in... Ferruh Yigit
- RE: [PATCH v9 01/21] net/cpfl: support device in... Liu, Mingxia
- RE: [PATCH v9 01/21] net/cpfl: support device in... Liu, Mingxia
- [PATCH v9 02/21] net/cpfl: add Tx queue setup Mingxia Liu
- [PATCH v9 03/21] net/cpfl: add Rx queue setup Mingxia Liu
- [PATCH v9 04/21] net/cpfl: support device start and stop Mingxia Liu