From owner-cvs-all@FreeBSD.ORG Tue Apr 17 00:35:11 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B631D16A409; Tue, 17 Apr 2007 00:35:11 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id A4A0B13C487; Tue, 17 Apr 2007 00:35:11 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3H0ZB7t026996; Tue, 17 Apr 2007 00:35:11 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3H0ZBqE026989; Tue, 17 Apr 2007 00:35:11 GMT (envelope-from thompsa) Message-Id: <200704170035.l3H0ZBqE026989@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 17 Apr 2007 00:35:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/ifconfig Makefile ifconfig.8 iflagg.c iftrunk.c src/share/man/man4 Makefile lagg.4 trunk.4 src/sys/modules Makefile src/sys/modules/if_lagg Makefile src/sys/modules/if_trunk Makefile src/sys/conf NOTES files ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Apr 2007 00:35:11 -0000 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