Re: mlx5_common: No Verbs device matches PCI device 0000:01:00.1

2022-04-07 Thread fwefew 4t4tg
This was my error. I linked the code incorrectly. For those new to DPDK the correct linking methodology is, using cmake, follows: - build DPDK from dpdk.org. For example see https://github.com/rodgarrison/reinvent then see https://github.com/rodgarrison/reinvent/blob/main/scripts/install#L58.

Re: mlx5_common: No Verbs device matches PCI device 0000:01:00.1

2022-04-07 Thread Erez Ferber
I assume your tree assumes there's a ConnectX-3 device installed, while the kernel driver doesnt support it for quite a while I would suggest re-compiling while excluding mlx4 PMD support. Thanks, Erez On Tue, 5 Apr 2022 at 23:54, fwefew 4t4tg <7532ya...@gmail.com> wrote: > Mr. Ferber, much

Re: mlx5_common: No Verbs device matches PCI device 0000:01:00.1

2022-04-05 Thread fwefew 4t4tg
Mr. Ferber, much appreciated. I knew this metal box came to me with two mellanox NICs bonded. I used their util to unbond it, but alas it did not do it all the way. The /etc/network/interfaces was bad. I fixed the config and rebooted. Voila. Success. ibv_devinfo now shows two devices. And the

Re: mlx5_common: No Verbs device matches PCI device 0000:01:00.1

2022-04-05 Thread Erez Ferber
Hi, Based on your output, the ConnectX-4LX device is configured in LAG mode managed via the kernel bonding scripts. In this mode, both physical functions share a single port (mlx5_bond_0). You should only probe the first PCI BDF - 01:00.0, not the 2nd one. By the way, the --dpdk installation