svn commit: r257249 - in head: share/man/man4 sys/modules/netgraph sys/modules/netgraph/fec sys/netgraph

Gleb Smirnoff glebius at FreeBSD.org
Mon Oct 28 12:47:06 UTC 2013


Author: glebius
Date: Mon Oct 28 12:47:05 2013
New Revision: 257249
URL: http://svnweb.freebsd.org/changeset/base/257249

Log:
  Axe ng_fec(4). It has never been a real netgraph(4) module, since
  it had no hooks. It has abused ifnet's if_afdata slot and actually
  abused every subsystem it touched.
  
  lagg(4) is a proper trunking solution at ifnet(9) layer.
  
  ng_one2many(4) is a proper trunking solution in netgraph(4).

Deleted:
  head/share/man/man4/ng_fec.4
  head/sys/modules/netgraph/fec/
  head/sys/netgraph/ng_fec.c
  head/sys/netgraph/ng_fec.h
Modified:
  head/share/man/man4/Makefile
  head/sys/modules/netgraph/Makefile

Modified: head/share/man/man4/Makefile
==============================================================================
--- head/share/man/man4/Makefile	Mon Oct 28 12:42:27 2013	(r257248)
+++ head/share/man/man4/Makefile	Mon Oct 28 12:47:05 2013	(r257249)
@@ -295,7 +295,6 @@ MAN=	aac.4 \
 	ng_etf.4 \
 	ng_ether.4 \
 	ng_ether_echo.4 \
-	ng_fec.4 \
 	ng_frame_relay.4 \
 	ng_gif.4 \
 	ng_gif_demux.4 \

Modified: head/sys/modules/netgraph/Makefile
==============================================================================
--- head/sys/modules/netgraph/Makefile	Mon Oct 28 12:42:27 2013	(r257248)
+++ head/sys/modules/netgraph/Makefile	Mon Oct 28 12:47:05 2013	(r257249)
@@ -18,7 +18,6 @@ SUBDIR=	async \
 	etf \
 	ether \
 	ether_echo \
-	fec \
 	frame_relay \
 	gif \
 	gif_demux \


More information about the svn-src-head mailing list