Skip to content

Commit b8335d9

Browse files
Saeed Mahameeddavem330
authored andcommitted
net/mlx5e: Don't notify HW when filling the edge of ICO SQ
We are going to do this a couple of steps ahead anyway. Fixes: d3c9bc2 ("net/mlx5e: Added ICO SQs") Signed-off-by: Saeed Mahameed <saeedm@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent f9c14e4 commit b8335d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • drivers/net/ethernet/mellanox/mlx5/core

drivers/net/ethernet/mellanox/mlx5/core/en_rx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ static inline void mlx5e_post_umr_wqe(struct mlx5e_rq *rq, u16 ix)
340340
while ((pi = (sq->pc & wq->sz_m1)) > sq->edge) {
341341
sq->db.ico_wqe[pi].opcode = MLX5_OPCODE_NOP;
342342
sq->db.ico_wqe[pi].num_wqebbs = 1;
343-
mlx5e_send_nop(sq, true);
343+
mlx5e_send_nop(sq, false);
344344
}
345345

346346
wqe = mlx5_wq_cyc_get_wqe(wq, pi);

0 commit comments

Comments
 (0)