From owner-cvs-src@FreeBSD.ORG Tue Jun 22 18:56:50 2004 Return-Path: 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 D44DB16A4CE; Tue, 22 Jun 2004 18:56:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B565D43D53; Tue, 22 Jun 2004 18:56:50 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i5MIul3r050241; Tue, 22 Jun 2004 18:56:47 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5MIulHq050240; Tue, 22 Jun 2004 18:56:47 GMT (envelope-from green) Message-Id: <200406221856.i5MIulHq050240@repoman.freebsd.org> From: Brian Feldman Date: Tue, 22 Jun 2004 18:56:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_bridge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Tue, 22 Jun 2004 18:56:51 -0000 green 2004-06-22 18:56:47 UTC FreeBSD src repository Modified files: sys/netgraph ng_bridge.c Log: Fix a problem with multiple-delivery (i.e. broadcast) in ng_bridge. Only the first link0..link$NLINKS hooks would be utilized, whereas the link hooks may be connected sparsely. Add a counter variable so that the link hook array is only traversed while there is still work to do, but that it continues up to the end if it has to. Revision Changes Path 1.25 +5 -3 src/sys/netgraph/ng_bridge.c