From owner-cvs-src@FreeBSD.ORG Sun Jun 5 03:13:14 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 39D5916A41C; Sun, 5 Jun 2005 03:13:14 +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 1605843D48; Sun, 5 Jun 2005 03:13:14 +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 j553DDWK014631; Sun, 5 Jun 2005 03:13:13 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j553DDw0014630; Sun, 5 Jun 2005 03:13:13 GMT (envelope-from thompsa) Message-Id: <200506050313.j553DDw0014630@repoman.freebsd.org> From: Andrew Thompson Date: Sun, 5 Jun 2005 03:13:13 +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.c if.h if_ethersubr.c if_llc.h if_types.h if_var.h src/sys/netinet if_ether.c src/sys/sys sockio.h 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: Sun, 05 Jun 2005 03:13:14 -0000 thompsa 2005-06-05 03:13:13 UTC FreeBSD src repository Modified files: sys/net if.c if.h if_ethersubr.c if_llc.h if_types.h if_var.h sys/netinet if_ether.c sys/sys sockio.h Log: Add hooks into the networking layer to support if_bridge. This changes struct ifnet so a buildworld is necessary. Approved by: mlaier (mentor) Obtained from: NetBSD Revision Changes Path 1.229 +8 -0 src/sys/net/if.c 1.96 +7 -0 src/sys/net/if.h 1.190 +48 -0 src/sys/net/if_ethersubr.c 1.12 +1 -0 src/sys/net/if_llc.h 1.20 +1 -0 src/sys/net/if_types.h 1.97 +2 -0 src/sys/net/if_var.h 1.137 +8 -4 src/sys/netinet/if_ether.c 1.28 +5 -0 src/sys/sys/sockio.h