net/mlx5: Fix query_nic_sys_image_guid() error during init
authorAviv Heller <avivh@mellanox.com>
Wed, 19 Dec 2018 23:37:17 +0000 (01:37 +0200)
committerSaeed Mahameed <saeedm@mellanox.com>
Thu, 20 Dec 2018 13:06:03 +0000 (05:06 -0800)
vport system image guid should be queried using vport nic API for
Ethernet ports, and vport hca API for Infiniband ports.

Fixes: fadd59fc50d0 ("net/mlx5: Introduce inter-device communication mechanism")
Signed-off-by: Aviv Heller <avivh@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/vport.c

index cfbea66b48798ba495c510ed6470619e6c6ff253..9b150ce9d315a3c2d3090cfb663150d10cb58f82 100644 (file)
@@ -1204,9 +1204,19 @@ EXPORT_SYMBOL_GPL(mlx5_nic_vport_unaffiliate_multiport);
 
 u64 mlx5_query_nic_system_image_guid(struct mlx5_core_dev *mdev)
 {
-       if (!mdev->sys_image_guid)
-               mlx5_query_nic_vport_system_image_guid(mdev, &mdev->sys_image_guid);
+       int port_type_cap = MLX5_CAP_GEN(mdev, port_type);
+       u64 tmp = 0;
 
-       return mdev->sys_image_guid;
+       if (mdev->sys_image_guid)
+               return mdev->sys_image_guid;
+
+       if (port_type_cap == MLX5_CAP_PORT_TYPE_ETH)
+               mlx5_query_nic_vport_system_image_guid(mdev, &tmp);
+       else
+               mlx5_query_hca_vport_system_image_guid(mdev, &tmp);
+
+       mdev->sys_image_guid = tmp;
+
+       return tmp;
 }
 EXPORT_SYMBOL_GPL(mlx5_query_nic_system_image_guid);