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

Hans Petter Selasky hselasky at FreeBSD.org
Tue Jan 30 12:38:07 UTC 2018


Author: hselasky
Date: Tue Jan 30 12:38:06 2018
New Revision: 328591
URL: https://svnweb.freebsd.org/changeset/base/328591

Log:
  Move the mlx5 core device pointer first in the mlx5en priv. This help simplify
  checks to recognize own network devices when using mlx5ib. This patch fixes
  an issues where mlx5ib fails to recognize mceX network devices for use with
  RoCE.
  
  MFC after:	1 week
  Sponsored by:	Mellanox Technologies

Modified:
  head/sys/dev/mlx5/mlx5_en/en.h

Modified: head/sys/dev/mlx5/mlx5_en/en.h
==============================================================================
--- head/sys/dev/mlx5/mlx5_en/en.h	Tue Jan 30 10:10:02 2018	(r328590)
+++ head/sys/dev/mlx5/mlx5_en/en.h	Tue Jan 30 12:38:06 2018	(r328591)
@@ -661,6 +661,8 @@ struct mlx5e_clbr_point {
 };
 
 struct mlx5e_priv {
+	struct mlx5_core_dev *mdev;     /* must be first */
+
 	/* priv data path fields - start */
 	int	order_base_2_num_channels;
 	int	queue_mapping_channel_mask;
@@ -698,7 +700,6 @@ struct mlx5e_priv {
 	struct work_struct set_rx_mode_work;
 	MLX5_DECLARE_DOORBELL_LOCK(doorbell_lock)
 
-	struct mlx5_core_dev *mdev;
 	struct ifnet *ifp;
 	struct sysctl_ctx_list sysctl_ctx;
 	struct sysctl_oid *sysctl_ifnet;


More information about the svn-src-all mailing list