Re: [dpdk-dev] [PATCH v6 1/2] ethdev: add an API to get device configuration info

2021-08-26 Thread Ajit Khaparde
On Wed, Aug 25, 2021 at 1:08 PM Ferruh Yigit wrote: > > On 8/24/2021 7:19 PM, Jie Wang wrote: > > This patch adds a new API "rte_eth_dev_conf_info_get()" to help testpmd get > > device configuration info. > > > > Signed-off-by: Jie Wang > > --- > > lib/ethdev/rte_ethdev.c | 27 ++

Re: [dpdk-dev] [PATCH v6 1/2] ethdev: add an API to get device configuration info

2021-08-25 Thread Ferruh Yigit
On 8/24/2021 7:19 PM, Jie Wang wrote: > This patch adds a new API "rte_eth_dev_conf_info_get()" to help testpmd get > device configuration info. > > Signed-off-by: Jie Wang > --- > lib/ethdev/rte_ethdev.c | 27 +++ > lib/ethdev/rte_ethdev.h | 26 ++

[dpdk-dev] [PATCH v6 1/2] ethdev: add an API to get device configuration info

2021-08-24 Thread Jie Wang
This patch adds a new API "rte_eth_dev_conf_info_get()" to help testpmd get device configuration info. Signed-off-by: Jie Wang --- lib/ethdev/rte_ethdev.c | 27 +++ lib/ethdev/rte_ethdev.h | 26 ++ lib/ethdev/version.map | 3 +++ 3 files changed,

[dpdk-dev] [PATCH v6 1/2] ethdev: add an API to get device configuration info

2021-08-24 Thread Jie Wang
This patch adds a new API "rte_eth_dev_conf_info_get()" to help testpmd get device configuration info. Signed-off-by: Jie Wang --- lib/ethdev/rte_ethdev.c | 27 +++ lib/ethdev/rte_ethdev.h | 26 ++ 2 files changed, 53 insertions(+) diff --git a/li