Message ID | 20240909194505.69715-2-saeed@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 7472d157cb8014103105433bcc0705af2e6f7184 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net,1/7] net/mlx5: Update the list of the PCI supported devices | expand |
Hello: This series was applied to netdev/net.git (main) by Saeed Mahameed <saeedm@nvidia.com>: On Mon, 9 Sep 2024 12:44:59 -0700 you wrote: > From: Maher Sanalla <msanalla@nvidia.com> > > Add the upcoming ConnectX-9 device ID to the table of supported > PCI device IDs. > > Fixes: f908a35b2218 ("net/mlx5: Update the list of the PCI supported devices") > Signed-off-by: Maher Sanalla <msanalla@nvidia.com> > Reviewed-by: Tariq Toukan <tariqt@nvidia.com> > Signed-off-by: Saeed Mahameed <saeedm@nvidia.com> > > [...] Here is the summary with links: - [net,1/7] net/mlx5: Update the list of the PCI supported devices https://git.kernel.org/netdev/net/c/7472d157cb80 - [net,2/7] net/mlx5e: Add missing link modes to ptys2ethtool_map https://git.kernel.org/netdev/net/c/7617d62cba4a - [net,3/7] net/mlx5e: Add missing link mode to ptys2ext_ethtool_map https://git.kernel.org/netdev/net/c/80bf474242b2 - [net,4/7] net/mlx5: Explicitly set scheduling element and TSAR type https://git.kernel.org/netdev/net/c/c88146abe4d0 - [net,5/7] net/mlx5: Add missing masks and QoS bit masks for scheduling elements https://git.kernel.org/netdev/net/c/452ef7f86036 - [net,6/7] net/mlx5: Verify support for scheduling element and TSAR type https://git.kernel.org/netdev/net/c/861cd9b9cb62 - [net,7/7] net/mlx5: Fix bridge mode operations when there are no VFs https://git.kernel.org/netdev/net/c/b1d305abef46 You are awesome, thank you!
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/main.c b/drivers/net/ethernet/mellanox/mlx5/core/main.c index 5b7e6f4b5c7e..2ec33c4a2a3a 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/main.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/main.c @@ -2217,6 +2217,7 @@ static const struct pci_device_id mlx5_core_pci_table[] = { { PCI_VDEVICE(MELLANOX, 0x101f) }, /* ConnectX-6 LX */ { PCI_VDEVICE(MELLANOX, 0x1021) }, /* ConnectX-7 */ { PCI_VDEVICE(MELLANOX, 0x1023) }, /* ConnectX-8 */ + { PCI_VDEVICE(MELLANOX, 0x1025) }, /* ConnectX-9 */ { PCI_VDEVICE(MELLANOX, 0xa2d2) }, /* BlueField integrated ConnectX-5 network controller */ { PCI_VDEVICE(MELLANOX, 0xa2d3), MLX5_PCI_DEV_IS_VF}, /* BlueField integrated ConnectX-5 network controller VF */ { PCI_VDEVICE(MELLANOX, 0xa2d6) }, /* BlueField-2 integrated ConnectX-6 Dx network controller */