svn commit: r331882 - in stable/11: share/man/man4 sys/dev/cm sys/dev/pdq

Brooks Davis brooks at FreeBSD.org
Mon Apr 2 16:11:51 UTC 2018


Author: brooks
Date: Mon Apr  2 16:11:49 2018
New Revision: 331882
URL: https://svnweb.freebsd.org/changeset/base/331882

Log:
  MFC r331830:
  
  Add deprecation notices for Arcnet and FDDI drivers.
  
  We intend to remove support before FreeBSD 12 is branched.
  
  Reviewed by:	imp, emaste
  Sponsored by:	DARPA, AFRL
  Differential Revision:	https://reviews.freebsd.org/D14890

Modified:
  stable/11/share/man/man4/cm.4
  stable/11/share/man/man4/fpa.4
  stable/11/sys/dev/cm/if_cm_isa.c
  stable/11/sys/dev/pdq/if_fpa.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/man/man4/cm.4
==============================================================================
--- stable/11/share/man/man4/cm.4	Mon Apr  2 16:08:51 2018	(r331881)
+++ stable/11/share/man/man4/cm.4	Mon Apr  2 16:11:49 2018	(r331882)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd July 16, 2005
+.Dd March 29, 2018
 .Dt CM 4
 .Os
 .Sh NAME
@@ -46,6 +46,12 @@ module at boot time, place the following line in
 .Bd -literal -offset indent
 if_cm_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/share/man/man4/fpa.4
==============================================================================
--- stable/11/share/man/man4/fpa.4	Mon Apr  2 16:08:51 2018	(r331881)
+++ stable/11/share/man/man4/fpa.4	Mon Apr  2 16:11:49 2018	(r331882)
@@ -4,7 +4,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 13, 1995
+.Dd March 29, 2018
 .Dt FPA 4
 .Os
 .Sh NAME
@@ -18,6 +18,12 @@
 .Fx
 only:
 .Cd "device fddi"
+.Sh DEPRECATION NOTICE
+The
+.Nm
+driver is not present in
+.Fx 12.0
+and later.
 .Sh DESCRIPTION
 The
 .Nm

Modified: stable/11/sys/dev/cm/if_cm_isa.c
==============================================================================
--- stable/11/sys/dev/cm/if_cm_isa.c	Mon Apr  2 16:08:51 2018	(r331881)
+++ stable/11/sys/dev/cm/if_cm_isa.c	Mon Apr  2 16:11:49 2018	(r331882)
@@ -111,6 +111,7 @@ cm_isa_attach(dev)
 	if (error)
 		goto err;
 
+	gone_in_dev(dev, 12, "cm(4) driver");
 	return 0;
 
 err:

Modified: stable/11/sys/dev/pdq/if_fpa.c
==============================================================================
--- stable/11/sys/dev/pdq/if_fpa.c	Mon Apr  2 16:08:51 2018	(r331881)
+++ stable/11/sys/dev/pdq/if_fpa.c	Mon Apr  2 16:11:49 2018	(r331882)
@@ -156,6 +156,7 @@ pdq_pci_attach(device_t dev)
     }
 
 
+    gone_in_dev(dev, 12, "fpa(4) driver");
     return (0);
 bad:
     pdq_free(dev);


More information about the svn-src-all mailing list