svn commit: r333171 - in stable/11: share/man/man4 sys/dev/ixgb

Sean Bruno sbruno at FreeBSD.org
Wed May 2 15:21:52 UTC 2018


Author: sbruno
Date: Wed May  2 15:21:51 2018
New Revision: 333171
URL: https://svnweb.freebsd.org/changeset/base/333171

Log:
  MFC r333137:
  
  ixgb(4):  Add deprecation notice for this old and busted 10GE adapter.
  
  This is a prequisite before we remove the driver from -current.

Modified:
  stable/11/share/man/man4/ixgb.4
  stable/11/sys/dev/ixgb/if_ixgb.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/man/man4/ixgb.4
==============================================================================
--- stable/11/share/man/man4/ixgb.4	Wed May  2 10:20:55 2018	(r333170)
+++ stable/11/share/man/man4/ixgb.4	Wed May  2 15:21:51 2018	(r333171)
@@ -31,7 +31,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd August 18, 2006
+.Dd April 30, 2018
 .Dt IXGB 4
 .Os
 .Sh NAME
@@ -51,6 +51,12 @@ module at boot time, place the following line in
 .Bd -literal -offset indent
 if_ixgb_load="YES"
 .Ed
+.Sh DEPRECATION NOTICE
+The
+.Nm
+driver is not present in
+.Fx 12.0
+and later.
 .Sh DESCRIPTION
 The
 .Nm

Modified: stable/11/sys/dev/ixgb/if_ixgb.c
==============================================================================
--- stable/11/sys/dev/ixgb/if_ixgb.c	Wed May  2 10:20:55 2018	(r333170)
+++ stable/11/sys/dev/ixgb/if_ixgb.c	Wed May  2 15:21:51 2018	(r333171)
@@ -349,6 +349,7 @@ ixgb_attach(device_t dev)
 	ixgb_clear_hw_cntrs(&adapter->hw);
 	ixgb_update_stats_counters(adapter);
 
+	gone_in_dev(dev, 12, "ixgb(4) driver");
 	INIT_DEBUGOUT("ixgb_attach: end");
 	return (0);
 


More information about the svn-src-all mailing list