diff options
author | Ilan Tayari <ilant@mellanox.com> | 2017-03-26 17:23:42 +0300 |
---|---|---|
committer | Saeed Mahameed <saeedm@mellanox.com> | 2017-06-27 16:36:47 +0300 |
commit | a6f7d2aff623bb7572d4bca1caf5820e0cd5a586 (patch) | |
tree | e619f280d8b163905409ed1a713dd9865b52bbc8 /include | |
parent | 52ec462eca9b87b8036209483efe1c6cf9c49d9a (diff) | |
download | linux-a6f7d2aff623bb7572d4bca1caf5820e0cd5a586.tar.gz linux-a6f7d2aff623bb7572d4bca1caf5820e0cd5a586.tar.bz2 linux-a6f7d2aff623bb7572d4bca1caf5820e0cd5a586.zip |
net/mlx5: Add support for multiple RoCE enable
Previously, only mlx5_ib enabled RoCE on the port, but FPGA needs it as
well.
Add support for counting number of enables, so that FPGA and IB can work
in parallel and independently.
Program the HW to enable RoCE on the first enable call, and program to
disable RoCE on the last disable call.
Signed-off-by: Ilan Tayari <ilant@mellanox.com>
Reviewed-by: Boris Pismenny <borisp@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mlx5/driver.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mlx5/driver.h b/include/linux/mlx5/driver.h index 08e99bd2cd77..32b0835d4491 100644 --- a/include/linux/mlx5/driver.h +++ b/include/linux/mlx5/driver.h @@ -777,6 +777,7 @@ struct mlx5_core_dev { struct mlx5e_resources mlx5e_res; struct { struct mlx5_rsvd_gids reserved_gids; + atomic_t roce_en; } roce; #ifdef CONFIG_MLX5_FPGA struct mlx5_fpga_device *fpga; |