thompsa 2007-04-17 00:35:11 UTC
FreeBSD src repository
Modified files:
sbin/ifconfig Makefile ifconfig.8
share/man/man4 Makefile
sys/modules Makefile
sys/conf NOTES files
sys/sys priv.h
sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if.c
if_ethersubr.c if_var.h
Added files:
sbin/ifconfig iflagg.c
share/man/man4 lagg.4
sys/modules/if_lagg Makefile
sys/net if_lagg.c if_lagg.h
Removed files:
sbin/ifconfig iftrunk.c
share/man/man4 trunk.4
sys/modules/if_trunk Makefile
sys/net if_trunk.c if_trunk.h
Log:
Rename the trunk(4) driver to lagg(4) as it is too similar to vlan trunking.
The name trunk is misused as the networking term trunk means carrying multiple
VLANs over a single connection. The IEEE standard for link aggregation (802.3
section 3) does not talk about 'trunk' at all while it is used throughout IEEE
802.1Q in describing vlans.
The lagg(4) driver provides link aggregation, failover and fault tolerance.
Discussed on: current@
Revision Changes Path
1.33 +1 -1 src/sbin/ifconfig/Makefile
1.137 +7 -7 src/sbin/ifconfig/ifconfig.8
1.1 +153 -0 src/sbin/ifconfig/iflagg.c (new)
1.2 +0 -153 src/sbin/ifconfig/iftrunk.c (dead)
1.379 +1 -1 src/share/man/man4/Makefile
1.1 +172 -0 src/share/man/man4/lagg.4 (new)
1.3 +0 -172 src/share/man/man4/trunk.4 (dead)
1.1422 +1 -1 src/sys/conf/NOTES
1.1196 +2 -2 src/sys/conf/files
1.528 +1 -1 src/sys/modules/Makefile
1.1 +19 -0 src/sys/modules/if_lagg/Makefile (new)
1.2 +0 -19 src/sys/modules/if_trunk/Makefile (dead)
1.2 +73 -73 src/sys/net/ieee8023ad_lacp.c
1.2 +15 -15 src/sys/net/ieee8023ad_lacp.h
1.271 +4 -4 src/sys/net/if.c
1.228 +6 -6 src/sys/net/if_ethersubr.c
1.1 +1607 -0 src/sys/net/if_lagg.c (new)
1.1 +209 -0 src/sys/net/if_lagg.h (new)
1.4 +0 -1607 src/sys/net/if_trunk.c (dead)
1.2 +0 -209 src/sys/net/if_trunk.h (dead)
1.114 +1 -1 src/sys/net/if_var.h
1.11 +1 -1 src/sys/sys/priv.h
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "[EMAIL PROTECTED]"