Re: [dpdk-dev] [PATCH] ethdev: rename FEC API parameters

2021-01-29 Thread Ferruh Yigit
On 1/16/2021 1:48 AM, Min Hu (Connor) wrote: Hi, Ferruh, this change origin from the opinions by Andrew Rybchenko . snippets like this: > +__rte_experimental > +int rte_eth_fec_get(uint16_t port_id, uint32_t *mode); > + > +/** > + * @warning > + * @b EXPERIMENTAL: this API may change,

Re: [dpdk-dev] [PATCH] ethdev: rename FEC API parameters

2021-01-15 Thread Min Hu (Connor)
Hi, Ferruh, this change origin from the opinions by Andrew Rybchenko . snippets like this: > +__rte_experimental > +int rte_eth_fec_get(uint16_t port_id, uint32_t *mode); > + > +/** > + * @warning > + * @b EXPERIMENTAL: this API may change, or be removed, without prior notice > + * > +

Re: [dpdk-dev] [PATCH] ethdev: rename FEC API parameters

2021-01-15 Thread Ajit Khaparde
On Fri, Jan 15, 2021 at 7:52 AM Ferruh Yigit wrote: > > The FEC APIs to get/set FEC mode has parameter name as 'fec_capa', > renamed them as 'fec_mode' to be more accurate with API. > > No functional change. > > Signed-off-by: Ferruh Yigit Acked-by: Ajit Khaparde > --- > Cc: Min Hu (Connor) >

[dpdk-dev] [PATCH] ethdev: rename FEC API parameters

2021-01-15 Thread Ferruh Yigit
The FEC APIs to get/set FEC mode has parameter name as 'fec_capa', renamed them as 'fec_mode' to be more accurate with API. No functional change. Signed-off-by: Ferruh Yigit --- Cc: Min Hu (Connor) Cc: Wei Hu (Xavier) Cc: Chengwen Feng Cc: Chengchang Tang Cc: Andrew Rybchenko Cc: Ajit Khapa