mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
IB/mlx5: Return PORT_ERR in Active to Initializing tranisition
commit2788cf3bd9upstream. FW port-change events are fired on Active <-> non Active port state transitions only. When the port state changes from Active to Initializing (Active -> Down -> Initializing), a single event is fired. The HCA transitions from Down to Initializing unless prevented from doing so, hence the driver should also propagate events when the port state is Initializing to consumers so they'll be aware that the port is no longer Active and act accordingly. Fixes:e126ba97db('mlx5: Add driver for Mellanox Connect-IB...') Signed-off-by: Noa Osherovich <noaos@mellanox.com> Signed-off-by: Leon Romanovsky <leon@kernel.org> Signed-off-by: Doug Ledford <dledford@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
popcornmix
parent
1f54fb7d5d
commit
ae34390c87
@@ -962,14 +962,11 @@ static void mlx5_ib_event(struct mlx5_core_dev *dev, void *context,
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case MLX5_DEV_EVENT_PORT_DOWN:
|
case MLX5_DEV_EVENT_PORT_DOWN:
|
||||||
|
case MLX5_DEV_EVENT_PORT_INITIALIZED:
|
||||||
ibev.event = IB_EVENT_PORT_ERR;
|
ibev.event = IB_EVENT_PORT_ERR;
|
||||||
port = (u8)param;
|
port = (u8)param;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MLX5_DEV_EVENT_PORT_INITIALIZED:
|
|
||||||
/* not used by ULPs */
|
|
||||||
return;
|
|
||||||
|
|
||||||
case MLX5_DEV_EVENT_LID_CHANGE:
|
case MLX5_DEV_EVENT_LID_CHANGE:
|
||||||
ibev.event = IB_EVENT_LID_CHANGE;
|
ibev.event = IB_EVENT_LID_CHANGE;
|
||||||
port = (u8)param;
|
port = (u8)param;
|
||||||
|
|||||||
Reference in New Issue
Block a user