svn commit: r359534 - stable/12/sys/dev/mlx5

Konstantin Belousov kib at FreeBSD.org
Wed Apr 1 19:41:39 UTC 2020


Author: kib
Date: Wed Apr  1 19:41:26 2020
New Revision: 359534
URL: https://svnweb.freebsd.org/changeset/base/359534

Log:
  MFC r359102:
  mlx5: Add 'follow' vport state, relevant for VFs.

Modified:
  stable/12/sys/dev/mlx5/device.h
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/dev/mlx5/device.h
==============================================================================
--- stable/12/sys/dev/mlx5/device.h	Wed Apr  1 19:40:14 2020	(r359533)
+++ stable/12/sys/dev/mlx5/device.h	Wed Apr  1 19:41:26 2020	(r359534)
@@ -826,6 +826,7 @@ static inline int mlx5_host_is_le(void)
 enum {
 	VPORT_STATE_DOWN		= 0x0,
 	VPORT_STATE_UP			= 0x1,
+	VPORT_STATE_FOLLOW		= 0x2,
 };
 
 enum {


More information about the svn-src-all mailing list