diff options
author | Or Gerlitz <ogerlitz@mellanox.com> | 2014-03-12 16:16:32 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-03-12 21:12:42 +0100 |
commit | 7855bff42ea9938a0853321256f4c8ce3628aa73 (patch) | |
tree | 0ada2923bbd22b0e2adf2068cdc2acb25a1cd5ad | |
parent | net/mlx4_en: Handle vxlan steering rules for mac address changes (diff) | |
download | linux-7855bff42ea9938a0853321256f4c8ce3628aa73.tar.xz linux-7855bff42ea9938a0853321256f4c8ce3628aa73.zip |
net/mlx4_core: Load the IB driver when the device supports IBoE
When checking what protocol drivers to load, the IB driver should be
requested also over Ethernet ports, if the device supports IBoE (RoCE).
Fixes: b046ffe 'net/mlx4_core: Load higher level modules according to ports type'
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx4/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx4/main.c b/drivers/net/ethernet/mellanox/mlx4/main.c index 30a08a60f059..936c15364739 100644 --- a/drivers/net/ethernet/mellanox/mlx4/main.c +++ b/drivers/net/ethernet/mellanox/mlx4/main.c @@ -751,7 +751,7 @@ static void mlx4_request_modules(struct mlx4_dev *dev) has_eth_port = true; } - if (has_ib_port) + if (has_ib_port || (dev->caps.flags & MLX4_DEV_CAP_FLAG_IBOE)) request_module_nowait(IB_DRV_NAME); if (has_eth_port) request_module_nowait(EN_DRV_NAME); |