diff options
author | Achiad Shochat <achiad@mellanox.com> | 2015-12-23 19:47:20 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2015-12-23 20:07:37 +0300 |
commit | 9efa75254593d6ca3ae54bac8153f47e1a7cbcda (patch) | |
tree | 7f9b3f4dc8f4bf126813eabcf715c4b5f280c296 /include/linux/mlx5/vport.h | |
parent | 0de60af649533ad8d9aaeab1df710e6a728d45ea (diff) | |
download | linux-9efa75254593d6ca3ae54bac8153f47e1a7cbcda.tar.xz |
net/mlx5_core: Introduce access functions to query vport RoCE fields
Introduce access functions to query NIC vport system_image_guid,
node_guid and qkey_viol_cntr.
Signed-off-by: Achiad Shochat <achiad@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'include/linux/mlx5/vport.h')
-rw-r--r-- | include/linux/mlx5/vport.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/mlx5/vport.h b/include/linux/mlx5/vport.h index 4c9ac604cccd..dfb2d9497d2d 100644 --- a/include/linux/mlx5/vport.h +++ b/include/linux/mlx5/vport.h @@ -37,6 +37,11 @@ u8 mlx5_query_vport_state(struct mlx5_core_dev *mdev, u8 opmod); void mlx5_query_nic_vport_mac_address(struct mlx5_core_dev *mdev, u8 *addr); +int mlx5_query_nic_vport_system_image_guid(struct mlx5_core_dev *mdev, + u64 *system_image_guid); +int mlx5_query_nic_vport_node_guid(struct mlx5_core_dev *mdev, u64 *node_guid); +int mlx5_query_nic_vport_qkey_viol_cntr(struct mlx5_core_dev *mdev, + u16 *qkey_viol_cntr); int mlx5_query_hca_vport_gid(struct mlx5_core_dev *dev, u8 other_vport, u8 port_num, u16 vf_num, u16 gid_index, union ib_gid *gid); |