From owner-cvs-all@FreeBSD.ORG Sun Aug 3 22:50:54 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B7B337B401; Sun, 3 Aug 2003 22:50:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14EF043FAF; Sun, 3 Aug 2003 22:50:54 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h745or0U081757; Sun, 3 Aug 2003 22:50:53 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h745orc5081756; Sun, 3 Aug 2003 22:50:53 -0700 (PDT) Message-Id: <200308040550.h745orc5081756@repoman.freebsd.org> From: Bill Paul Date: Sun, 3 Aug 2003 22:50:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Mon, 04 Aug 2003 05:50:54 -0000 wpaul 2003/08/03 22:50:53 PDT FreeBSD src repository Modified files: sys/dev/bge if_bge.c Log: Set the BGE_RX_MTU register correctly so that we can receive slightly larger than normal frames, to account for the case where a bge(4) NIC is used with VLANs. Since we set the IFCAP_VLAN_MTU flag, we must allow reception of frames up to 1522 bytes in size rather than 1518. Note that it is possible to work around this bug by doing: # ifconfig bge0 mtu 1504 prior to configuring any VLAN interfaces. Revision Changes Path 1.47 +1 -1 src/sys/dev/bge/if_bge.c