svn commit: r347267 - head/sys/dev/mlx5/mlx5_en

Hans Petter Selasky hselasky at FreeBSD.org
Wed May 8 10:37:33 UTC 2019


Author: hselasky
Date: Wed May  8 10:37:31 2019
New Revision: 347267
URL: https://svnweb.freebsd.org/changeset/base/347267

Log:
  Make sure the running variable is properly set for ratelimited SQs in mlx5en(4).
  
  Else the SQs won't be properly released when closing rate-limited connections
  leading to wrong state transitions on the SQ.
  
  MFC after:	3 days
  Sponsored by:	Mellanox Technologies

Modified:
  head/sys/dev/mlx5/mlx5_en/mlx5_en_rl.c

Modified: head/sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
==============================================================================
--- head/sys/dev/mlx5/mlx5_en/mlx5_en_rl.c	Wed May  8 10:37:03 2019	(r347266)
+++ head/sys/dev/mlx5/mlx5_en/mlx5_en_rl.c	Wed May  8 10:37:31 2019	(r347267)
@@ -176,6 +176,8 @@ mlx5e_rl_open_sq(struct mlx5e_priv *priv, struct mlx5e
 	if (err)
 		goto err_disable_sq;
 
+	WRITE_ONCE(sq->running, 1);
+
 	return (0);
 
 err_disable_sq:


More information about the svn-src-head mailing list