From owner-cvs-all@FreeBSD.ORG Fri Aug 11 17:09:28 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 4587E16A4E6; Fri, 11 Aug 2006 17:09:28 +0000 (UTC) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0C1D43D46; Fri, 11 Aug 2006 17:09:27 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k7BH9RXH099059; Fri, 11 Aug 2006 17:09:27 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7BH9Re4099058; Fri, 11 Aug 2006 17:09:27 GMT (envelope-from yar) Message-Id: <200608111709.k7BH9Re4099058@repoman.freebsd.org> From: Yar Tikhiy Date: Fri, 11 Aug 2006 17:09:27 +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_vlan.c src/share/man/man4 vlan.4 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: Fri, 11 Aug 2006 17:09:28 -0000 yar 2006-08-11 17:09:27 UTC FreeBSD src repository Modified files: sys/net if_vlan.c share/man/man4 vlan.4 Log: Optionally pad outgoing frames to the minimum of 60 bytes (excl. FCS) before tagging them. This can help to work around brain-damage in some switches that fail to pad a frame after untagging it if its length drops below the minimum. This option is blessed by IEEE Std 802.1Q (2003 Ed.), paragraph C.4.4.3.b. It's controlled by sysctl net.link.vlan.soft_pad. Idea by: az MFC after: 1 week Revision Changes Path 1.31 +24 -2 src/share/man/man4/vlan.4 1.110 +33 -0 src/sys/net/if_vlan.c