From owner-cvs-src@FreeBSD.ORG Wed Jul 13 20:40:19 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A778B16A41C; Wed, 13 Jul 2005 20:40:19 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DB3A43D46; Wed, 13 Jul 2005 20:40:19 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j6DKeJ8j094519; Wed, 13 Jul 2005 20:40:19 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j6DKeJfm094518; Wed, 13 Jul 2005 20:40:19 GMT (envelope-from thompsa) Message-Id: <200507132040.j6DKeJfm094518@repoman.freebsd.org> From: Andrew Thompson Date: Wed, 13 Jul 2005 20:40:19 +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/sys/net if_bridge.c src/share/man/man4 if_bridge.4 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jul 2005 20:40:19 -0000 thompsa 2005-07-13 20:40:19 UTC FreeBSD src repository Modified files: sys/net if_bridge.c share/man/man4 if_bridge.4 Log: Previously the bridge MTU was set to ETHERMTU and could not be changed. Since we can only bridge interfaces with the same value it meant that all members had to be set at ETHERMTU as well. Allow the first member to be added to define the MTU for the bridge, the check still applies to all additional members. Print an informative message if the MTU is incorrect [1] Requested by: Niki Denev [1] Approved by: mlaier (mentor) MFC after: 3 days Revision Changes Path 1.6 +3 -0 src/share/man/man4/if_bridge.4 1.12 +6 -1 src/sys/net/if_bridge.c