Re: [dpdk-dev] [PATCH 13/14] net/i40e/base: fix potentially uninitialized variables in NVM code

2021-06-20 Thread Xing, Beilei
> -Original Message- > From: Zhang, RobinX > Sent: Friday, June 18, 2021 2:39 PM > To: dev@dpdk.org > Cc: Xing, Beilei ; Guo, Junfeng > ; Yang, SteveX ; Zhang, > RobinX ; sta...@dpdk.org; Pau, Christopher > > Subject: [PATCH 13/14] net/i40e/base: fix potentially uninitialized variables

[dpdk-dev] [PATCH v2 14/14] net/i40e/base: update version in readme

2021-06-20 Thread Robin Zhang
Update base code version in README. Signed-off-by: Robin Zhang --- drivers/net/i40e/base/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/i40e/base/README b/drivers/net/i40e/base/README index 6af2993116..c84764005b 100644 --- a/drivers/net/i40e/base/README +

[dpdk-dev] [PATCH v2 13/14] net/i40e/base: fix potentially uninitialized variables in NVM code

2021-06-20 Thread Robin Zhang
The status of i40e_read_nvm_word is not checked, so variables set from this function could be used uninitialized. In this case, preserve the existing flow that does not block initialization by initializing these values from the start. The variable checksum from i40e_calc_nvm_checksum is used befor

[dpdk-dev] [PATCH v2 12/14] net/i40e/base: fix headers to match functions

2021-06-20 Thread Robin Zhang
Fix several kernel-doc warnings when building with W=1. These changes are only to comments. Fixes: 8db9e2a1b232 ("i40e: base driver") Fixes: 842ea1996335 ("i40e/base: save link module type") Fixes: fd72a2284a89 ("i40e/base: support LED blinking with new PHY") Fixes: 788fc17b2dec ("i40e/base: suppo

[dpdk-dev] [PATCH v2 11/14] net/i40e/base: 10GBASE-ER Optical modules recognition

2021-06-20 Thread Robin Zhang
This change adds a new PHY type for 10GBASE-ER modules. Signed-off-by: Stanislaw Grzeszczak Signed-off-by: Robin Zhang --- drivers/net/i40e/base/i40e_adminq_cmd.h | 2 ++ drivers/net/i40e/base/i40e_common.c | 1 + drivers/net/i40e/base/i40e_type.h | 1 + 3 files changed, 4 insertions(

[dpdk-dev] [PATCH v2 10/14] net/i40e/base: add flags and fields for double vlan processing

2021-06-20 Thread Robin Zhang
Add flags for outer vlan and include set port parameters in Linux compilation. Add flags, which describe port and switch state for both double vlan functionality and outer vlan processing. Signed-off-by: Przemyslaw Patynowski Signed-off-by: Robin Zhang --- drivers/net/i40e/base/i40e_adminq_cmd.

[dpdk-dev] [PATCH v2 09/14] net/i40e/base: fix AOC media type reported by ethtool

2021-06-20 Thread Robin Zhang
For Active Optical Cable (AOC) the correct media type is "Fibre", not "Direct Attach Copper". Fixes: d749d4d89969 ("i40e/base: add AOC PHY types") Fixes: aa153cc89ff0 ("net/i40e/base: add new PHY types for 25G AOC and ACC") Cc: sta...@dpdk.org Signed-off-by: Dawid Lukwinski Signed-off-by: Robin

[dpdk-dev] [PATCH v2 08/14] net/i40e/base: fix update link data for X722

2021-06-20 Thread Robin Zhang
The X722 card has 'Link Type' information elsewhere than the X710. Previously, for all cards, the 'Link Type' information was retrieved by opcode 0x0607 and this value was wrong for all X722 cards. Now this information for X722 only is taken by opcode 0x0600 (function: i40e_aq_get_phy_capabilities)

[dpdk-dev] [PATCH v2 07/14] net/i40e/base: fix PF reset failed

2021-06-20 Thread Robin Zhang
PF has to delete all the filters during reset. If it is fully loaded with filters then it is possible that it will take more than 200 ms to finish the reset resulting in timeout during pf_reset and PF reset failed, -15 error indication. Increasing the timeout value for PF reset from 200 to 1000 to

[dpdk-dev] [PATCH v2 06/14] net/i40e/base: fix PHY type identifiers for 2.5G and 5G adapters

2021-06-20 Thread Robin Zhang
Unlike other supported adapters, 2.5G and 5G use different PHY type identifiers for reading/writing PHY settings and for reading link status. This commit intruduces separate PHY identifiers for these two operation types. Fixes: 988ed63c7441 ("net/i40e/base: add support for Carlsville device") Cc:

[dpdk-dev] [PATCH v2 05/14] net/i40e/base: define new Shadow RAM pointers

2021-06-20 Thread Robin Zhang
Add definitions for Shadow RAM pointers: 6th FPA module, 5th FPA module in X722 and Preservation Rules Module. Signed-off-by: Stanislaw Grzeszczak Signed-off-by: Robin Zhang --- drivers/net/i40e/base/i40e_type.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/i40e/base/i40e_t

[dpdk-dev] [PATCH v2 04/14] net/i40e/base: set TSA table values when parsing CEE configuration

2021-06-20 Thread Robin Zhang
Driver did not Set TSA table values when parsing CEE configuration obtained from FW. Signed-off-by: Pawel Malinowski Signed-off-by: Robin Zhang --- drivers/net/i40e/base/i40e_dcb.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/net/i40e/base/i40e_dcb.c b/driv

[dpdk-dev] [PATCH v2 03/14] net/i40e/base: add support for Min Rollback Revision for 4 more X722 modules

2021-06-20 Thread Robin Zhang
This change increments X722 API version and adds new constants related to the extended implementation of Security Version Opt-In. Signed-off-by: Stanislaw Grzeszczak Signed-off-by: Robin Zhang --- drivers/net/i40e/base/i40e_adminq_cmd.h | 16 ++-- 1 file changed, 10 insertions(+), 6

[dpdk-dev] [PATCH v2 02/14] net/i40e/base: update FW API version to 1.14

2021-06-20 Thread Robin Zhang
Update FW increment API version to 1.14 Signed-off-by: Sylwester Dziedziuch Signed-off-by: Robin Zhang --- drivers/net/i40e/base/i40e_adminq_cmd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/i40e/base/i40e_adminq_cmd.h b/drivers/net/i40e/base/i40e_adminq_cmd

[dpdk-dev] [PATCH v2 01/14] net/i40e/base: add new versions of send ASQ command functions

2021-06-20 Thread Robin Zhang
ASQ send command functions are returning only i40e status codes yet some calling functions also need Admin Queue status that is stored in hw->aq.asq_last_status. Since hw object is stored on a heap it introduces a possibility for a race condition in access to hw if calling function is not fast enou

[dpdk-dev] [PATCH v2 00/14] i40e base code update

2021-06-20 Thread Robin Zhang
update i40e base code. source code of i40e driver: cid-i40e.2021.04.29.tar.gz changelog in share repo: >From 59a080f4fafe ("i40e-shared: Add opcode 0x0406 and 0x0416 to Linux support") To bedcbea1063 ("i40e-shared: Fix potentially uninitialized variables in NVM code") The following commits are i

Re: [dpdk-dev] [PATCH] config/arm: add checking SVE cpuflag

2021-06-20 Thread Ruifeng Wang
> -Original Message- > From: Chengwen Feng > Sent: Friday, May 21, 2021 11:34 AM > To: tho...@monjalon.net; ferruh.yi...@intel.com > Cc: dev@dpdk.org; vikto...@rehivetech.com; Ruifeng Wang > ; jer...@marvell.com; > bruce.richard...@intel.com > Subject: [PATCH] config/arm: add checking SVE

Re: [dpdk-dev] [PATCH] net/ice: fix integer overflow when computing max_pkt_len

2021-06-20 Thread Zhang, Qi Z
> -Original Message- > From: Tudor Cornea > Sent: Tuesday, June 15, 2021 6:39 PM > To: Yang, Qiming ; Zhang, Qi Z > > Cc: dev@dpdk.org; Tudor Cornea > Subject: [PATCH] net/ice: fix integer overflow when computing max_pkt_len > > The len variable, used in the computation of max_pkt_le

Re: [dpdk-dev] [PATCH v3] vhost: enable IOMMU for async vhost

2021-06-20 Thread Hu, Jiayu
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Saturday, June 19, 2021 12:18 AM > To: Ding, Xuan ; Xia, Chenbo > Cc: dev@dpdk.org; Hu, Jiayu ; Pai G, Sunil > ; Richardson, Bruce ; > Van Haaren, Harry ; Liu, Yong > > Subject: Re: [PATCH v3] vhost: enable IOMMU for async

Re: [dpdk-dev] [PATCH] kni: fix wrong mbuf alloc count in kni_allocate_mbufs

2021-06-20 Thread wangyunjian
> -Original Message- > From: Ferruh Yigit [mailto:ferruh.yi...@intel.com] > Sent: Friday, June 18, 2021 9:37 PM > To: wangyunjian ; dev@dpdk.org > Cc: liucheng (J) ; dingxiaoxiong > > Subject: Re: [dpdk-dev] [PATCH] kni: fix wrong mbuf alloc count in > kni_allocate_mbufs > > On 5/31/2021

Re: [dpdk-dev] [PATCH] net/i40e: fix data path corrupt on secondary process

2021-06-20 Thread Zhang, Qi Z
> -Original Message- > From: Yu, DapengX > Sent: Wednesday, June 9, 2021 3:06 PM > To: Xing, Beilei > Cc: dev@dpdk.org; Zhang, Qi Z ; Yu, DapengX > ; sta...@dpdk.org > Subject: [PATCH] net/i40e: fix data path corrupt on secondary process > > From: Dapeng Yu > > The rte_eth_devices a

Re: [dpdk-dev] [PATCH] net/i40e: fix wrong data path selection in secondary process

2021-06-20 Thread Zhang, Qi Z
> -Original Message- > From: Yu, DapengX > Sent: Wednesday, June 9, 2021 3:05 PM > To: Xing, Beilei > Cc: dev@dpdk.org; Zhang, Qi Z ; Yu, DapengX > ; sta...@dpdk.org > Subject: [PATCH] net/i40e: fix wrong data path selection in secondary process > > From: Dapeng Yu > > The flag use_

Re: [dpdk-dev] [PATCH v2 0/4] support AVF RSS and FDIR for GRE tunnel packet

2021-06-20 Thread Zhang, Qi Z
> -Original Message- > From: Wu, Wenjun1 > Sent: Wednesday, June 2, 2021 10:25 AM > To: dev@dpdk.org; Zhang, Qi Z ; Wu, Jingjing > ; Xing, Beilei > Cc: Wu, Wenjun1 > Subject: [PATCH v2 0/4] support AVF RSS and FDIR for GRE tunnel packet > > [PATCH v2 1/4] net/iavf: support flow patte

[dpdk-dev] [PATCH v2] app/procinfo: add device registers dump

2021-06-20 Thread Min Hu (Connor)
From: Chengchang Tang This patch add support for dump the device registers from a running application. It can help developers locate the problem. Signed-off-by: Chengchang Tang Signed-off-by: Min Hu (Connor) --- v2: * some logs are adjusted and error string are printed after file operation fai

Re: [dpdk-dev] [PATCH V6] config/arm: add Qualcomm Centriq 2400 part number

2021-06-20 Thread Ruifeng Wang
> -Original Message- > From: Thomas Monjalon > Sent: Friday, June 18, 2021 4:58 PM > To: Ruifeng Wang ; Thierry Herbelot > > Cc: dev@dpdk.org; jer...@marvell.com; Honnappa Nagarahalli > ; Juraj Linkeš > ; nd > Subject: Re: [PATCH V6] config/arm: add Qualcomm Centriq 2400 part > number >

Re: [dpdk-dev] [PATCH] config/arm: add checking SVE cpuflag

2021-06-20 Thread fengchengwen
Hi, ARM guys, Thomas Could you help review this patch ? Thanks On 2021/5/21 11:33, Chengwen Feng wrote: > If compiled with SVE feature (e.g. "-march=armv8.2-a+sve'), the binary > could not run on non-SVE platform else it will encounter illegal > instruction [1]. > > This patch fixes it by add '

Re: [dpdk-dev] [PATCH v3] build: fix SVE compile error with gcc8.3

2021-06-20 Thread fengchengwen
Hi, Thomas This patch already reviewed by ARM guys. Please review it, thanks On 2021/6/12 15:07, fengchengwen wrote: > Friendly ping > > > On 2021/5/27 15:12, Fengchengwen wrote: >> Hi, Thomas >> >> Could you review this patch? Thanks >> >> >> From:Ruifeng Wang >> To:Fengchengwen ;Thomas

Re: [dpdk-dev] [PATCH v8 1/2] config/arm: select most suitable -march for kunpeng soc

2021-06-20 Thread fengchengwen
Hi, Thomas Another patch '[dpdk-dev] [PATCH v8 2/2] net/hns3: refactor SVE code compile method' has nothing to do with this patch (they're just in the same patchset) and has been reviewed by ARM guys. So please review it, thanks. On 2021/6/18 7:33, Honnappa Nagarahalli wrote: > > >> >> 24/0

Re: [dpdk-dev] [PATCH v2 1/6] eal: add function that sets thread name

2021-06-20 Thread Dmitry Kozlyuk
2021-06-18 18:57 (UTC-0700), Narcisa Ana Maria Vasile: > From: Narcisa Vasile > > Implement function that sets the name of a thread. > On Windows, SetThreadDescription() is used. Use GetProcAddress() > to obtain the address of the function for MinGW compatibility. > > Depends-on: series-17402 ("

Re: [dpdk-dev] [PATCH v13 10/10] app/testpmd: enable building testpmd on Windows

2021-06-20 Thread Dmitry Kozlyuk
2021-05-05 12:12 (UTC-0700), Jie Zhou: > From: Jie Zhou > > - Disable unsupported Apps on Windows > - Enable building of testpmd on Windows > > Signed-off-by: Jie Zhou > Signed-off-by: Jie Zhou > Acked-by: Tal Shnaiderman Acked-by: Dmitry Kozlyuk

Re: [dpdk-dev] [PATCH v13 09/10] app/testpmd: fix unused function warnings

2021-06-20 Thread Dmitry Kozlyuk
2021-05-05 12:12 (UTC-0700), Jie Zhou: > Function print_fdir_mask and print_fdir_flex_payload is only called > when either i40e or ixgbe presents. Add #if defined to remove > "unused function" compilation warning. > > Signed-off-by: Jie Zhou > Signed-off-by: Jie Zhou > Acked-by: Tal Shnaiderman

Re: [dpdk-dev] [PATCH v13 08/10] app/testpmd: fix headers inclusion

2021-06-20 Thread Dmitry Kozlyuk
2021-05-05 12:12 (UTC-0700), Jie Zhou: > - Include rte_os_shim.h in testpmd.h > - Remove redundant headers > > Signed-off-by: Jie Zhou > Signed-off-by: Jie Zhou > Acked-by: Tal Shnaiderman It would be logical to merge this patch with the previous one.

Re: [dpdk-dev] [PATCH v13 05/10] app/testpmd: resolve name collisions

2021-06-20 Thread Dmitry Kozlyuk
2021-05-05 12:12 (UTC-0700), Jie Zhou: > Resolve name collisions with Windows types > > Signed-off-by: Jie Zhou > Signed-off-by: Jie Zhou > Acked-by: Tal Shnaiderman Acked-by: Dmitry Kozlyuk

Re: [dpdk-dev] [PATCH v13 04/10] eal/Windows: add clock_gettime on Windows

2021-06-20 Thread Dmitry Kozlyuk
2021-05-05 12:12 (UTC-0700), Jie Zhou: > Add clock_gettime on Windows in rte_os_shim.h > > Signed-off-by: Jie Zhou > Signed-off-by: Jie Zhou > --- > lib/eal/windows/include/rte_os_shim.h | 38 +++ > 1 file changed, 38 insertions(+) > > diff --git a/lib/eal/windows/inclu

Re: [dpdk-dev] [PATCH v13 03/10] eal/windows: add device event stubs

2021-06-20 Thread Dmitry Kozlyuk
2021-05-05 12:12 (UTC-0700), Jie Zhou: > Add device event stubs in eal_dev.c for Windows > > Signed-off-by: Jie Zhou > Signed-off-by: Jie Zhou > Acked-by: Tal Shnaiderman Acked-by: Dmitry Kozlyuk

Re: [dpdk-dev] [PATCH v13 02/10] eal/windows: add necessary macros

2021-06-20 Thread Dmitry Kozlyuk
2021-05-05 12:12 (UTC-0700), Jie Zhou: > Add required macros by testpmd on Windows in rte_os_shim.h > > Signed-off-by: Jie Zhou > Signed-off-by: Jie Zhou > Acked-by: Tal Shnaiderman > --- > lib/eal/windows/include/rte_os_shim.h | 9 + > 1 file changed, 9 insertions(+) > > diff --git a

[dpdk-dev] [PATCH v3 11/13] event/cnxk: add Rx adapter vector support

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add event vector support for cnxk event Rx adapter, add control path APIs to get vector limits and ability to configure event vectorization on a given Rx queue. Signed-off-by: Pavan Nikhilesh --- doc/guides/eventdevs/cnxk.rst| 2 + drivers/event/cnxk/cn10k_e

[dpdk-dev] [PATCH v3 13/13] event/cnxk: add Tx event vector fastpath

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add Tx event vector fastpath, integrate event vector Tx routine into Tx burst. Signed-off-by: Pavan Nikhilesh --- doc/guides/eventdevs/cnxk.rst | 1 + doc/guides/rel_notes/release_21_08.rst | 2 +- drivers/common/cnxk/roc_sso.h | 23 ++ drivers/

[dpdk-dev] [PATCH v3 12/13] event/cnxk: add Rx event vector fastpath

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add Rx event vector fastpath to convert HW defined metadata into rte_mbuf and rte_event_vector. Signed-off-by: Pavan Nikhilesh --- doc/guides/rel_notes/release_21_08.rst | 1 + drivers/event/cnxk/cn10k_worker.h | 56 +++ drivers/net/cnxk/cn10k_rx.h

[dpdk-dev] [PATCH v3 10/13] event/cnxk: add Tx adapter fastpath ops

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add support for event eth Tx adapter fastpath operations. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_eventdev.c | 38 drivers/event/cnxk/cn10k_worker.h | 67 ++ drivers/event/cnxk/cn10k_worker_tx_enq.c | 23

[dpdk-dev] [PATCH v3 09/13] event/cnxk: add Tx adapter support

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add support for event eth Tx adapter. Signed-off-by: Pavan Nikhilesh --- doc/guides/eventdevs/cnxk.rst| 4 +- doc/guides/rel_notes/release_21_08.rst | 6 +- drivers/event/cnxk/cn10k_eventdev.c | 91 ++ drivers/event/cnxk/cn9k_eventd

[dpdk-dev] [PATCH v3 08/13] event/cnxk: add Rx adapter fastpath ops

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add support for event eth Rx adapter fastpath operations. Signed-off-by: Pavan Nikhilesh --- drivers/event/cnxk/cn10k_eventdev.c | 136 +++- drivers/event/cnxk/cn10k_worker.c | 54 drivers/event/cnxk/cn10k_worker.h | 97 +-

[dpdk-dev] [PATCH v3 07/13] event/cnxk: add Rx adapter support

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add support for event eth Rx adapter. Resize cn10k workslot fastpath structure to fit in 64B cacheline size. Signed-off-by: Pavan Nikhilesh --- doc/guides/eventdevs/cnxk.rst| 28 doc/guides/rel_notes/release_21_08.rst | 5 + drivers/common/cnxk/roc_n

[dpdk-dev] [PATCH v3 06/13] net/cnxk: add multi seg Tx vector routine

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add multi segment Tx vector routine. Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn10k_tx.c | 20 +- drivers/net/cnxk/cn10k_tx.h | 388 +-- drivers/net/cnxk/cn10k_tx_vec_mseg.c | 24 ++ drivers/net/cnxk/cn9k_tx.c

[dpdk-dev] [PATCH v3 05/13] net/cnxk: enable TSO processing in vector Tx

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Enable TSO offload in vector Tx burst function. Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn10k_tx.c | 2 +- drivers/net/cnxk/cn10k_tx.h | 97 + drivers/net/cnxk/cn10k_tx_vec.c | 5 +- drivers/net/cnxk/cn9k_tx.c |

[dpdk-dev] [PATCH v3 04/13] net/cnxk: enable ptp processing in vector Tx

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Enable PTP offload in vector Tx burst function. Since, we can no-longer use a single LMT line for burst of 4, split the LMT into two and transmit twice. Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn10k_tx.c | 4 +- drivers/net/cnxk/cn10k_tx.h | 109

[dpdk-dev] [PATCH v3 03/13] net/cnxk: enable VLAN processing in vector Tx

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Enable VLAN offload in vector Tx burst function. Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn10k_tx.c | 3 +- drivers/net/cnxk/cn10k_tx.h | 125 +++ drivers/net/cnxk/cn10k_tx_vec.c | 3 +- drivers/net/cnxk/cn9k_tx.c |

[dpdk-dev] [PATCH v3 02/13] net/cnxk: enable ptp processing in vector Rx

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Enable PTP offload in vector Rx burst function, use vector path for processing mbufs and finally switch to scalar when extracting timestamp. Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn10k_ethdev.c | 1 - drivers/net/cnxk/cn10k_rx.c | 5 +- drivers/net/c

[dpdk-dev] [PATCH v3 01/13] net/cnxk: add multi seg Rx vector routine

2021-06-20 Thread pbhagavatula
From: Pavan Nikhilesh Add multi-segment Rx vector routine, form the primary mbufs using vector path switch to scalar path when extracting segments. Signed-off-by: Pavan Nikhilesh --- Depends-on: http://patches.dpdk.org/project/dpdk/list/?series=17394 v3 Changes: - Spell check. drivers/net

[dpdk-dev] [Bug 745] performance-thread build failure with clang 12.0.1

2021-06-20 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=745 Bug ID: 745 Summary: performance-thread build failure with clang 12.0.1 Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: norm

Re: [dpdk-dev] [PATCH] common/mlx5: fix Netlink port name attribute padding

2021-06-20 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Slava Ovsiienko > Sent: Saturday, June 19, 2021 4:56 PM > To: dev@dpdk.org > Cc: Raslan Darawsheh ; Matan Azrad > ; sta...@dpdk.org > Subject: [PATCH] common/mlx5: fix Netlink port name attribute padding > > On some kernels the string attributes within Ne

Re: [dpdk-dev] [PATCH v2] common/mlx5: add provider query port support to glue library

2021-06-20 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Slava Ovsiienko > Sent: Saturday, June 19, 2021 3:49 PM > To: dev@dpdk.org > Cc: Raslan Darawsheh ; Matan Azrad > ; NBU-Contact-Thomas Monjalon > ; sta...@dpdk.org > Subject: [PATCH v2] common/mlx5: add provider query port support to glue > library > > Th